Roadmap
Last updated
Last updated
derw formatimport Test exposing (equals)
testMath: boolean -> void
testMath a? =
equals 1 1derw init# inside a package directory
derw testderw compilederw install --name derw-lang/stdlib --version mainderw initderw replderw bundle --entry src/Main.derw --output dist/index.js --watch --quietderw compile --target englishderw template --path src/Main.derw --template websayHi: string -> void
sayHi name =
do
globalThis.console.log "Hello" name
return
undefined