roc/examples/hello-rust/Hello.roc
2021-09-24 13:43:00 -07:00

12 lines
186 B
Text

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