boot2

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

021-preinc.c (131B)


      1 // tests/cc-parse/21-preinc.c — pre-increment on a simple lval (§B.1).
      2 int main(void) {
      3     int x = 5;
      4     ++x;
      5     return x;
      6 }