boot2

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

00076.c (80B)


      1 int
      2 main()
      3 {
      4 	if(0 ? 1 : 0)
      5 		return 1;
      6 	if(1 ? 0 : 1)
      7 		return 2;
      8 	return 0;
      9 }