mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
8 lines
182 B
Text
8 lines
182 B
Text
app "libhello"
|
|
packages { pf: "platform/main.roc" }
|
|
imports []
|
|
provides [main] to pf
|
|
|
|
main : Str -> Str
|
|
main = \message ->
|
|
"TypeScript said to Roc: \(message)! 🎉"
|