boot2

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

00106.c (107B)


      1 struct S1 { int x; };
      2 struct S2 { struct S1 s1; };
      3 
      4 int
      5 main()
      6 {
      7 	struct S2 s2;
      8 	s2.s1.x = 1;
      9 	return 0;
     10 }