boot2

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

007-call-with-args.c (73B)


      1 int g(int a, int b) { return a + b; }
      2 int main(void) { return g(2, 3); }