ex-binop-simple1.ox (89B)
1 void main() { 2 int i = 0; 3 i = i + 1; 4 print(i); 5 i = i + 2; 6 print(i); 7 }