mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-12 03:49:15 +00:00
16 lines
302 B
Text
16 lines
302 B
Text
app [main!] { pf: platform "../basic-cli/main.roc" }
|
|
|
|
import pf.Stdout
|
|
|
|
main! = |_| {
|
|
var count = 0
|
|
while count < 5 {
|
|
count = count + 1
|
|
}
|
|
|
|
if count == 5 {
|
|
Stdout.line! "SUCCESS: count reached 5"
|
|
} else {
|
|
Stdout.line! "FAILURE: count did not reach 5"
|
|
}
|
|
}
|