ref: 1fb34b1a5524bb3325a97e301a6cc51884a74bbb 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)) }