mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-25 07:23:50 +00:00
13 lines
268 B
Text
13 lines
268 B
Text
app "issue2279"
|
|
packages { pf: "platform/main.roc" }
|
|
imports [Issue2279Help, pf.Task]
|
|
provides [main] to pf
|
|
|
|
main =
|
|
text =
|
|
if Bool.true then
|
|
Issue2279Help.text
|
|
else
|
|
Issue2279Help.asText 42
|
|
|
|
Task.putLine text
|