compiler

Unnamed Compiled Systems Language Project
git clone http://frotz.net/git/compiler.git
Log | Files | Refs

1010-func-call.src (89B)


      1 func add(a i32, b i32) i32 {
      2 	return a + b;
      3 }
      4 
      5 func start() i32 {
      6 	return add(20, 22);
      7 }