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