summaryrefslogtreecommitdiff
path: root/test.toc
blob: da377c868c79a451e54df3cae54b2886254041e3 (plain)
1
2
3
4
5
6
7
8
9
#include "std/io.toc";

f ::= fn(x : ..) int {
  x[0] + x[1]
};

main ::= fn() {
	puti(f(1,2));
};