mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
16 lines
401 B
Text
16 lines
401 B
Text
app [main!] { pf: platform "../test-platform-effects-zig/main.roc" }
|
|
|
|
import pf.Effect
|
|
|
|
main! : {} => {}
|
|
main! = \{} ->
|
|
friends = ["Lu", "Marce", "Joaquin", "Chloé", "Mati", "Pedro"]
|
|
printAll! friends
|
|
|
|
printAll! : List Str => {}
|
|
printAll! = \friends ->
|
|
when friends is
|
|
[] -> {}
|
|
[first, .. as remaining] ->
|
|
Effect.putLine! first
|
|
printAll! remaining
|