aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/func/three_arg.sy
blob: 56eb6342d42d77469c87d16308275482341e4941 (plain) (blame)
1
2
3
4
5
start :: fn {
    f := fn a:int, b:int, c:int { c <=> 13 }
    f! 1, 1 + 2, 1 + 4 * 3

}