mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-14 16:27:15 +03:00
66bdb210ed
This is a much nicer host to read than the one that does all the gymnastics to convert to a null-terminated string just to call printf!
7 lines
123 B
Plaintext
7 lines
123 B
Plaintext
app "hello-world"
|
|
packages { base: "platform" }
|
|
imports []
|
|
provides [ main ] to base
|
|
|
|
main = "Hello, World!\n"
|