mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
11 lines
384 B
Text
11 lines
384 B
Text
app "helloWorld"
|
|
packages { pf: "c-platform" }
|
|
# To switch platforms, comment-out the line above and un-comment one below.
|
|
# packages { pf: "rust-platform" }
|
|
# packages { pf: "swift-platform" }
|
|
# packages { pf: "web-platform" } # See ./web-platform/README.md
|
|
# packages { pf: "zig-platform" }
|
|
imports []
|
|
provides [main] to pf
|
|
|
|
main = "Hello, World!\n"
|