Roadmap
Derw is currently in a usable place, but there's a lot more planned. This page documents the current features, along with some ideas I have yet to implement.
1.0.0
2.0.0
Last updated
Derw is currently in a usable place, but there's a lot more planned. This page documents the current features, along with some ideas I have yet to implement.
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