boot2

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

00024.c (102B)


      1 typedef struct { int x; int y; } s;
      2 
      3 s v;
      4 
      5 int
      6 main()
      7 {
      8 	v.x = 1;
      9 	v.y = 2;
     10 	return 3 - v.x - v.y;
     11 }
     12