spl

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

2002-err-decl-mismatch-count.spl (85B)


      1 
      2 fn hello(a i32, b i32) bool;
      3 
      4 fn hello(a i32, b i32, c i32) bool {
      5 	return false;
      6 }