boot2

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

00042.c (115B)


      1 int
      2 main()
      3 {
      4 	union { int a; int b; } u;
      5 	u.a = 1;
      6 	u.b = 3;
      7 	
      8 	if (u.a != 3 || u.b != 3)
      9 		return 1;
     10 	return 0;
     11 }