mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-04 00:54:36 +00:00
9 lines
152 B
Text
9 lines
152 B
Text
app "hello-world" provides [ main ] to "./platform"
|
|
|
|
greeting =
|
|
hi = "Hello"
|
|
name = "World"
|
|
|
|
"\(hi), \(name)!!!!!!!!!!!!!"
|
|
|
|
main = greeting
|