summaryrefslogtreecommitdiff
path: root/test.toc
blob: d64d32ec2535a3b81460bab188968c459a82b999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "std/io.toc";


n ::= nms {
	x := 5;
}

m ::= nms {
	x := 13;
	y := 108;
}

main ::= fn() {
	use n;
	use m;
	//x = 7;
	//puti(x);
	puti(y);
	y = 100;
	puti(m.y);
}