aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/func/param_2.sy
blob: 1915c427dd17d72eb3f2ce09ab1c145f28b3a89c (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
}