boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

00082.c (96B)


      1 int
      2 main()
      3 {
      4 	unsigned long long x;
      5 	
      6 	x = 0;
      7 	x = x + 1;
      8 	if (x != 1)
      9 		return 1;
     10 	return 0;
     11 }