spl

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

1011-func-call-forward.spl (86B)


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