roc/test/fx/test_with_wrapper.roc
2025-11-25 18:38:57 -05:00

10 lines
146 B
Text

app [main!] { pf: platform "./platform/main.roc" }
import pf.Stdout
str : Str -> Str
str = |s| s
main! = || {
Stdout.line!(str("Hello"))
}