aboutsummaryrefslogtreecommitdiff
path: root/tests/simple_loop/simple_loop.qbt
blob: 32e544fa1f6b0d270dad697c6c7bff2347ac4557 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
main()
{
	i27 i = 0;
	i27 max = 1000;
	i27 sum = 0;

top:
	i27 sum = sum + i;
	i27 i = i + 1;
	i < max -> top;
	&_putchar(sum) => ();
	=> ();
}