boot2

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

063-do-while.c (92B)


      1 int main(void) {
      2     int x;
      3     x = 0;
      4     do { x = x + 1; } while (x < 3);
      5     return x;
      6 }