boot2

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

00137.c (114B)


      1 #define x(y) #y
      2 
      3 int
      4 main(void)
      5 {
      6 	char *p;
      7 	p = x(hello)  " is better than bye";
      8 
      9 	return (*p == 'h') ? 0 : 1;
     10 }