mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-22 08:08:28 +00:00
16 lines
210 B
Text
16 lines
210 B
Text
app [main!] { pf: platform "./platform/main.roc" }
|
|
|
|
import pf.Stdout
|
|
import pf.Stderr
|
|
|
|
main! = || {
|
|
Stdout.line!("done")
|
|
}
|
|
|
|
answer : I64
|
|
answer = 42
|
|
|
|
fortytwo : I64
|
|
fortytwo = 42
|
|
|
|
expect answer == fortytwo
|