mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-20 23:30:51 +00:00
11 lines
140 B
Text
11 lines
140 B
Text
app [main!] { pf: platform "./platform/main.roc" }
|
|
|
|
import pf.Stdout
|
|
|
|
main! = || {
|
|
Stdout.line!("hello")
|
|
}
|
|
|
|
x = 42
|
|
y = x
|
|
expect y == 42
|