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); };