mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-18 14:31:42 +00:00
11 lines
191 B
Text
11 lines
191 B
Text
app [main!] { pf: platform "./platform/main.roc" }
|
|
|
|
import pf.Stdout
|
|
|
|
main! = || {
|
|
one : U8
|
|
one = 1
|
|
two : U8
|
|
two = one.plus(one) # one + one
|
|
Stdout.line!("two: ${two}")
|
|
}
|