summaryrefslogtreecommitdiff
path: root/test.toc
blob: 2df6c46764175d47c1eed52f05134428ab66995e (plain)
1
2
3
4
5
6
7
8
9
foo ::= fn(x: int) int {
	2*x
}

main ::=fn(){
	foo(foo(10));

}
main();