mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
14 lines
263 B
Plaintext
14 lines
263 B
Plaintext
app "issue2279"
|
|
packages { pf: "platform/main.roc" }
|
|
imports [Issue2279Help, pf.Task]
|
|
provides [main] to pf
|
|
|
|
main =
|
|
text =
|
|
if True then
|
|
Issue2279Help.text
|
|
else
|
|
Issue2279Help.asText 42
|
|
|
|
Task.putLine text
|