roc/examples/hello-world/Hello.roc
Richard Feldman 66bdb210ed Have Hello World write to a fd
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!
2021-06-21 19:05:12 -04:00

7 lines
123 B
Plaintext

app "hello-world"
packages { base: "platform" }
imports []
provides [ main ] to base
main = "Hello, World!\n"