summaryrefslogtreecommitdiff
path: root/examples/order2.nl
blob: 2925ee7a4260fc3f206f866a8862b30ecd48b6fa (plain)
1
2
3
4
5
6
7
8
x: int32;

x = 10;

x += (x += 50);		// 10 + (10 + 50)

print x;