summaryrefslogtreecommitdiff
path: root/tests/bc/functions.txt
blob: 5e540ed66a1142734190c52fd9e25ead125fe834 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
define x(x, y) {
	return x - y + 5
}

define y(y, x) {
	return x(y, x) + x(x, y)
}

y(1, 4)
y(2, 4)
y(3, 4)
y(4, 3)
y(3, 2)