summaryrefslogtreecommitdiff
path: root/tests/nms.toc
blob: 413da8d10dc58bcac66515d0bea1078595d83236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
io ::= nms {
	#include "io.toc";
};

n ::= nms {
	x := 1;
	counter ::= fn() int { x += 1; x };
};


main ::= fn() {
	a := n.counter();
	b := n.counter();
	n.counter();
	c := n.counter();
	io.puts("Hello!");
	io.puti(a);
	io.puti(b);
	io.puti(c);
};