aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/auto/param_2.sy
blob: ac5fdfda0a101f7f202039c7a312289abba2f6d9 (plain) (blame)
1
2
3
4
5
6
7
start :: fn {
add := fn a: int, b: int -> int {
                    ret a + b
                  }
                  add(1, 1) <=> 2
                  add(10, 20) <=> 30
}