mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 06:55:15 +00:00
10 lines
370 B
Text
10 lines
370 B
Text
app "ingested-file"
|
|
packages { pf: "https://github.com/roc-lang/basic-cli/releases/download/0.10.0/vNe6s9hWzoTZtFmNkvEICPErI9ptji_ySjicO6CkucY.tar.br" }
|
|
imports [
|
|
pf.Stdout,
|
|
"ingested-file.roc" as ownCode : Str,
|
|
]
|
|
provides [main] to pf
|
|
|
|
main =
|
|
Stdout.line "\nThis roc file can print its own source code. The source is:\n\n$(ownCode)"
|