language

some fools attempt at an interpreted language
Log | Files | Refs | README

test.ti (150B)


      1 include extern;
      2 
      3 func testing(int x, int y, int z) -> int:
      4 {
      5 	int rv = (x * y) * z;
      6 	return rv;
      7 }
      8 
      9 print some_external_function(testing(2333, 3, 3));