mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-19 06:42:54 +00:00
10 lines
188 B
Text
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
|
|
}
|