boot2

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

013-while-continue.c (134B)


      1 int count(int n, int target) {
      2     while (n < target) { n = n + 1; continue; }
      3     return n;
      4 }
      5 int main(void) { return count(0, 3); }