Highscore: while/goto

p: a;
q: b;
if (c) goto p;
if (d) goto q;

a; b;
while(d || c) {
  if (c) { a; }
  b;
}



Johannes Waldmann 2012-01-31