roc/test/fx/list_first_function.roc
Richard Feldman f0cf4e2007
Merge origin/main into fix-another-aoc
Resolved merge conflicts in:
- src/cli/test/fx_test_specs.zig (combined test entries from both branches)
- test/snapshots/fuzz_crash/fuzz_crash_027.md (took main's error message format)
- test/snapshots/fuzz_crash/fuzz_crash_028.md (took main's error message format)
2025-12-11 23:18:39 -05:00

8 lines
133 B
Text

app [main!] { pf: platform "./platform/main.roc" }
import pf.Stdout
main! = || {
_s = List.first([1])
Stdout.line!("ok")
}