summary refs log tree commit diff
path: root/minic/test.minic
blob: 8d30eb1932c2a064f71b5ac6b7f42cafb9dc1a82 (plain) (blame)
1
2
3
4
5
6
7
8
9
{
	int x;
	int *p;

	x = 0;
	p = &x;
	while (x < 10)
		*p = x + 1;
}