mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
* check for parse/token errors and print them on run * return early on parse fail if errors are not allowed * fix merge issue
8 lines
137 B
Text
8 lines
137 B
Text
app [main!] {
|
|
pf: platform "./platform/main.roc",
|
|
}
|
|
import pf.Stdout
|
|
main! = |_args| {
|
|
Stdout.line!("Hello world")
|
|
Ok({})
|
|
}}
|