mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-13 07:16:18 +00:00
11 lines
253 B
Text
11 lines
253 B
Text
app "libhello"
|
|
packages { pf: "platform/main.roc" }
|
|
imports []
|
|
provides [makeItRoc] to pf
|
|
|
|
makeItRoc : Str -> Str
|
|
makeItRoc = \str ->
|
|
if Str.isEmpty str then
|
|
"I need a string here!"
|
|
else
|
|
"\(str), OH YEAH!!! 🤘🤘"
|