aboutsummaryrefslogtreecommitdiff
path: root/test.sil
blob: 64933084b1f5a62de3620aad33160c5c46be0940 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
Int second(Int x, Int y) {
	Int a, b;
	a := x;
	x := y;
	y := a;
	return y;
}

Int main () {
	return second(100, 200);
}