roc/test/fx/expect_with_toplevel_numeric.roc
Anton-4 0a11193943
Add missing fx tests (#8556)
* add missing fx tests

* cleanup
2025-12-03 18:00:32 +01:00

11 lines
140 B
Text

app [main!] { pf: platform "./platform/main.roc" }
import pf.Stdout
main! = || {
Stdout.line!("hello")
}
x = 42
y = x
expect y == 42