kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

6_9_05_proto_then_def.c (96B)


      1 int helper(int);
      2 int test_main(void) { return helper(40); }
      3 int helper(int x) { return x + 2; }