mips-cc

A little C compiler
git clone git@git.mpah.dev/mips-cc.git
Log | Files | Refs | README

11.test (72B)


      1 char a = 'A';
      2 a = 'B';
      3 
      4 char b;
      5 b = 'a';
      6 
      7 int c;
      8 c = 1 + 10;
      9 
     10 return a;