mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
7 lines
148 B
Text
7 lines
148 B
Text
main =
|
|
parseArgs?({},)
|
|
|> List.dropFirst(1,)
|
|
|> List.mapTry?(Str.toU8,)
|
|
|> List.sum
|
|
|> |total| "Sum of numbers: ${Num.to_str total}"
|
|
|> Str.toUpper
|