roc/test/fx/parse_error.roc
Ameen Radwan ea76b7b1ee
check for parse/token errors and print them on run (#8586)
* check for parse/token errors and print them on run

* return early on parse fail if errors are not allowed

* fix merge issue
2025-12-08 21:10:16 +01:00

8 lines
137 B
Text

app [main!] {
pf: platform "./platform/main.roc",
}
import pf.Stdout
main! = |_args| {
Stdout.line!("Hello world")
Ok({})
}}