mips-cc

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

18.test (78B)


      1 void hello()
      2 {
      3 	puts("Hello, wolrd!");
      4 }
      5 
      6 int main()
      7 {
      8 	hello();
      9 	return 0;
     10 }