mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-19 20:45:05 +00:00
15 lines
458 B
Text
15 lines
458 B
Text
app "ingested-file-bytes"
|
|
packages { pf: "https://github.com/roc-lang/basic-cli/releases/download/0.9.1/y_Ww7a2_ZGjp0ZTt9Y_pNdSqqMRdMLzHMKfdN8LWidk.tar.br" }
|
|
imports [
|
|
pf.Stdout,
|
|
"../../LICENSE" as license : _, # A type hole can also be used here.
|
|
]
|
|
provides [main] to pf
|
|
|
|
main =
|
|
# Due to how license is used, it will be a List U8.
|
|
license
|
|
|> List.map Num.toU64
|
|
|> List.sum
|
|
|> Num.toStr
|
|
|> Stdout.line
|