mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-31 17:17:26 +00:00
13 lines
247 B
Text
13 lines
247 B
Text
app [main!] { pf: platform "platform/main.roc" }
|
|
|
|
import Issue2279Help
|
|
import pf.Host
|
|
|
|
main! = \{} ->
|
|
text =
|
|
if Bool.true then
|
|
Issue2279Help.text
|
|
else
|
|
Issue2279Help.as_text(42)
|
|
|
|
Host.put_line!(text)
|