mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-19 23:03:11 +00:00
10 lines
229 B
Text
10 lines
229 B
Text
app [main!] { pf: platform "../basic-cli/main.roc" }
|
|
|
|
# This file has intentional formatting issues
|
|
get_name : { name: Str, age: U64 } -> Str
|
|
get_name = |person| person.name
|
|
|
|
add : U64,U64->U64
|
|
add=|x,y|x+y
|
|
|
|
main! = |_| {}
|