boot2

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

00052.c (82B)


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