roc/test/fx/run_warning_only.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

9 lines
177 B
Text

app [main!] { pf: platform "./platform/main.roc" }
import pf.Stdout
main! = || {
# This has only a warning - unused variable
x = 5
Stdout.line!("Hello, World!")
}