roc/crates/cli/tests/benchmarks/issue2279.roc
2025-01-04 15:10:55 -08:00

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)