compiler

Unnamed Compiled Systems Language Project
git clone http://frotz.net/git/compiler.git
Log | Files | Refs

hello.c (139B)


      1 int func(int x, int y) {
      2 	while (x > 0) {
      3 		y = y + x;
      4 		if (x == 17) {
      5 			y *= 2;
      6 		} else {
      7 			y -= 1;
      8 		}
      9 		x = x - 1;
     10 	}
     11 	return y;
     12 }
     13