boot2

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

000-return-argc.c (254B)


      1 /* Phase-1 milestone: smallest end-to-end exercise of the cc.scm pipeline.
      2  * Returns argc, so:
      3  *   ./00-return-argc            -> exit 1 (argv[0] only)
      4  *   ./00-return-argc a b        -> exit 3
      5  */
      6 int main(int argc, char **argv) {
      7     return argc;
      8 }