aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/auto/precedence.sy
blob: 0aee65887407edfdd4a4eeeded89be82711923d3 (plain) (blame)
1
2
3
4
5
6
7
8
start :: fn {
f := fn a: int, b: int -> int {
                       ret a + b
                     }
                     1 + f(2, 3) <=> 6
                     2 * f(2, 3) <=> 10
                     f(2, 3) - (2 + 3) <=> 0
}