boot2

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

00126.c (173B)


      1 int
      2 main()
      3 {
      4         int x;
      5 
      6         x = 3;
      7         x = !x;
      8         x = !x;
      9         x = ~x;
     10         x = -x;
     11         if(x != 2)
     12                 return 1;
     13         return 0;
     14 }