summaryrefslogtreecommitdiff
path: root/three/+test.ha
blob: 5ec97450f74ece218cbcc734024b6cff05e65217 (plain)
1
2
3
4
5
6
7
8
use os;
use io;

@test fn testthree() void = {
	const f = os::open("three/in")!;
	defer io::close(f)!;
	assert(do(f) == 161);
};