mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
13 lines
258 B
Text
13 lines
258 B
Text
app "issue2279"
|
|
packages { pf: "platform" }
|
|
imports [ Issue2279Help, pf.Task ]
|
|
provides [ main ] to pf
|
|
|
|
main =
|
|
text =
|
|
if True then
|
|
Issue2279Help.text
|
|
else
|
|
Issue2279Help.asText 42
|
|
|
|
Task.putLine text
|