mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 15:03:46 +00:00
15 lines
459 B
Text
15 lines
459 B
Text
app "ingested-file-bytes"
|
|
packages { pf: "https://github.com/roc-lang/basic-cli/releases/download/0.10.0/vNe6s9hWzoTZtFmNkvEICPErI9ptji_ySjicO6CkucY.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
|