summaryrefslogtreecommitdiff
path: root/tests/include.toc
blob: dee6c163c32523534180276ff39201e0a84e36b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "std/io.toc", io;
#include "std/io.toc", foo;
#include "std/io.toc", bar;
#include "std/io.toc", baz;
#include "std/io.toc";
#include "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");
}