summaryrefslogtreecommitdiff
path: root/test.toc
blob: 54f7b2b055466db9f8722ccc74633ebc7a854db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "tests/std/io.toc", io;
#include "tests/std/io.toc", foo;
#include "tests/std/io.toc", bar;
#include "tests/std/io.toc", baz;
#include "tests/std/io.toc";
#include "tests/included.toc", inc;

main ::= fn() {
	puts("hello");
	io.puts("hello");
	foo.puts("hello");
	bar.puts("hello");
	baz.puts("hello");
	inc.puts("hello");
	inc.foo.puts("hello");
}