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