roc/examples/cli/ingested-file.roc
Brendan Hansknecht fdf8bc6094
fix formatting
2023-04-09 14:03:34 -07:00

10 lines
279 B
Text

app "ingested-file"
packages { pf: "cli-platform/main.roc" }
imports [
pf.Stdout,
"ingested-file.roc" as ownCode : Str,
]
provides [main] to pf
main =
Stdout.line "\nThis roc file can print it's own source code. The source is:\n\n\(ownCode)"