blob: 609f54a8f1509c29965b7e68f76adfd734f27a95 [file] [log] [blame]
Justin Bognerbf42cfd2015-02-18 21:24:51 +00001// Some code for the middle of a program
2
Alex Lorenz34ac9b52014-08-19 17:32:30 +00003x = x;
4if (x == 0) {
5 x = 1;
6} else {
7 x = 2;
8}
9if (true) {
10 x = x;
11} else {
12 x = x;
13}