shithub: mc

ref: c79e884fc2aedd7695d73b1f0e5fe8059cb451d3
dir: /lib/bio/test/bio-unitwr.myr/

View raw version
use std
use bio

const main = {
	var f

	std.mkpath("tmpout")
	match bio.create("tmpout/test-unitwr", bio.Wr, 0o644)
	| `std.Ok bio:	f = bio
	| `std.Err m:	std.fatal("Unable to open data file: {}\n", m)
	;;
	bio.putb(f, 42)
	bio.putc(f, 'ה')
	bio.putb(f, 0xa)
	bio.close(f);
}