mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
8 lines
156 B
Plaintext
8 lines
156 B
Plaintext
app "helloWorld"
|
|
packages { pf: "cli/cli-platform/main.roc" }
|
|
imports [pf.Stdout]
|
|
provides [main] to pf
|
|
|
|
main =
|
|
Stdout.line "Hello, World!"
|