boot2

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

00138.c (109B)


      1 #define M(x) x
      2 #define A(a,b) a(b)
      3 
      4 int
      5 main(void)
      6 {
      7 	char *a = A(M,"hi");
      8 
      9 	return (a[1] == 'i') ? 0 : 1;
     10 }