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

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