boot2

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

031-comma.c (157B)


      1 // tests/cc-parse/31-comma.c — comma operator (§K.1).
      2 int main(void) {
      3     int a;
      4     int b;
      5     (a = 1, b = 2);
      6     return a + b * 10;  // 1 + 20 = 21
      7 }