mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +00:00
12 lines
179 B
Text
12 lines
179 B
Text
app "hello-web"
|
|
packages { pf: "platform" }
|
|
imports []
|
|
provides [ main ] to pf
|
|
|
|
greeting =
|
|
hi = "Hello"
|
|
name = "World"
|
|
|
|
"\(hi), \(name)!"
|
|
|
|
main = greeting
|