boot2

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

011-two-params.c (77B)


      1 int add(int a, int b) { return a + b; }
      2 int main(void) { return add(2, 5); }