mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
12 lines
256 B
Text
12 lines
256 B
Text
app [main!] { pf: platform "./platform/main.roc" }
|
|
|
|
import pf.Stdout
|
|
|
|
# Tests List.for_each! with effectful callbacks
|
|
|
|
main! = || {
|
|
items = ["apple", "banana", "cherry"]
|
|
List.for_each!(items, |item| {
|
|
Stdout.line!("Item: ${item}")
|
|
})
|
|
}
|