boot2

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

00017.c (90B)


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