mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-04 17:14:37 +00:00
10 lines
237 B
Text
10 lines
237 B
Text
app [main] { pf: platform "platform/main.roc" }
|
|
|
|
main : U64 -> Str
|
|
main = \num ->
|
|
if num == 0 then
|
|
"I need a positive number here!"
|
|
else
|
|
str = Num.to_str(num)
|
|
|
|
"The number was $(str), OH YEAH!!! 🤘🤘"
|