boot2

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

00149.c (145B)


      1 struct S { int a; int b; };
      2 struct S *s = &(struct S) { 1, 2 };
      3 
      4 int
      5 main()
      6 {
      7 	if(s->a != 1)
      8 		return 1;
      9 	if(s->b != 2)
     10 		return 2;
     11 	return 0;
     12 }