shithub: mc

ref: 19a2bf91cafd9c3e58a30f815a13e8d05a2359ca
dir: /test/bio-unitwr.myr/

View raw version
use std
use bio

const main = {
	var f
	match bio.create("tmpout/test-unitwr", bio.Wr, 0o644)
	| `std.Some bio:	f = bio
	| `std.None:	std.fatal(1, "Unable to open data file")
	;;
	bio.putb(f, 42)
	bio.putc(f, 'ה')
	bio.putb(f, 0xa)
	bio.close(f);
}