boot2

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

00010.c (111B)


      1 int
      2 main()
      3 {
      4 	start:
      5 		goto next;
      6 		return 1;
      7 	success:
      8 		return 0;
      9 	next:
     10 	foo:
     11 		goto success;
     12 		return 1;
     13 }