roc/examples/hello-rust/Hello.roc

12 lines
182 B
Text

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