mirror of
https://github.com/roc-lang/roc.git
synced 2025-11-01 21:40:58 +00:00
10 lines
252 B
Text
10 lines
252 B
Text
app "test" provides [main] to "./platform"
|
|
|
|
input : List Str
|
|
input = [ "foo", "bar" ]
|
|
|
|
main = when input is
|
|
# ^^^^^ List Str
|
|
[ _first, .. as rest ] -> 1 + List.len rest
|
|
# ^^^^ List Str
|
|
[] -> 0
|