kit

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

6_8_01_if_else.c (84B)


      1 int test_main(void) {
      2   int x;
      3   if (1)
      4     x = 7;
      5   else
      6     x = 99;
      7   return x;
      8 }