summaryrefslogtreecommitdiff
path: root/tests/test_conditional_3.tnsl
blob: 3387d84987cdf56ce89bbbedacc19c522d39a768 (plain)
1
2
3
4
5
6
7
8
9
10
/; main [int]

	int i = 0

	/; loop (int j = 0; j < 70) [j++]
		i = j
	;/

	return i
;/