summary refs log tree commit diff
path: root/minic/test.minic
blob: 433ad172ba210740fa59bc2ec2d033025f211a65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
main()
{
	int x;
	int y;
	int *p;

	x = 0;
	p = &x;
	p[0] = 2 + 2;
	while (x > 3) {
		x = x - 1;
	}

	y = x == 3;
}