mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-13 07:16:18 +00:00
11 lines
239 B
Text
11 lines
239 B
Text
app "helloWorld"
|
|
packages { pf: "cli/cli-platform/main.roc" }
|
|
imports [pf.Stdout, pf.Program.{ Program }]
|
|
provides [main] to pf
|
|
|
|
main = Program.noArgs mainTask
|
|
|
|
mainTask =
|
|
Stdout.line "Hello, World!"
|
|
|> Program.exit 0
|
|
|