roc/examples/hello-zig/Hello.roc

12 lines
181 B
Text

app "hello-world"
packages { pf: "platform" }
imports []
provides [ main ] to pf
greeting =
hi = "Hello"
name = "World"
"\(hi), \(name)!"
main = greeting