ref: f0107d3b7411afbe8e1e8a04b13de3b60a625d04 dir: /test/aritylow.myr/
use std /* should fail because we call f with too few args */ const f = {a:int, b:int, c:int -> a + b + c } const main = { std.exit(f(1, 2)) }