boot2

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

00105.c (85B)


      1 int
      2 main()
      3 {
      4 	int i;
      5 
      6 	for(i = 0; i < 10; i++)
      7 		if (!i)
      8 			continue;
      9 	
     10 	return 0;
     11 }