shithub: mc

ref: 8a8f41b17cb8c2f51b26e3e3a541e7b0a876ec3c
dir: /lib/bio/test/bio-create.myr/

View raw version
use std
use bio

const main = {
	var f

	std.mkdir("tmpout", 0o755);
	match bio.create("tmpout/test-create", bio.Wr, 0o644)
	| `std.Ok bio:	f = bio
	| `std.Fail m:	std.fatal("Failed to open file: {}\n", m)
	;;
	bio.close(f)
}