roc/examples/cli/ingested-file-bytes.roc
2024-01-26 16:02:30 -05:00

15 lines
458 B
Text

app "ingested-file-bytes"
packages { pf: "https://github.com/roc-lang/basic-cli/releases/download/0.8.1/x8URkvfyi9I0QhmVG98roKBUs_AZRkLFwFJVJ3942YA.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.toNat
|> List.sum
|> Num.toStr
|> Stdout.line