mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
11 lines
161 B
Text
11 lines
161 B
Text
app "test" provides [main] to "./platform"
|
|
|
|
entry =
|
|
Age := U32
|
|
|
|
v : Age -> U32
|
|
v = \@Age n -> n
|
|
v
|
|
|
|
main = entry
|
|
# ^^^^^ Age -[[v(3)]]-> U32
|