roc/test/fx/run_allow_errors.roc
Anton-4 b578eea38f
--allow-errors flag (#8557)
* only run with errors if flag

* added --allow-errors

* doc comment
2025-12-03 19:41:10 +01:00

10 lines
188 B
Text

app [main!] { pf: platform "./platform/main.roc" }
import pf.Stdout
main! = || {
Stdout.line!("Hello, World!")
# Intentionally provoke errors to test --allow-errors
x = y
}