ref: d8959a4a6d41b0a1328d81eef7c29d10ec669f8e
dir: /lib/bio/test/bio-unitwr.myr/
use std
use bio
const main = {
var f
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);
}