boot2

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

00111.c (63B)


      1 int
      2 main()
      3 {
      4 	short s = 1;
      5 	long l = 1;
      6 
      7 	s -= l;
      8 	return s;
      9 }