summaryrefslogtreecommitdiff
path: root/tnslc/compile/generator.tnsl
blob: 5d71a05d4263c3e20cc2a2180a006e945642e396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/; generate (utils.File fin, fout)
	~uint8 fa = fin.path.to_cstr('/')
	~uint8 fb = fout.path.to_cstr('/')

	_printf(fa)
	_printf(newline)
	_printf(fb)
	_printf(newline)

	_delete(fa)
	_delete(fb)
;/