spl

systems programming language
git clone http://frotz.net/git/spl.git
Log | Files | Refs | README | LICENSE

1010-func-call.spl (85B)


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