shithub: mc

ref: 2fa02e1d1d3df890d4349316389633d58c986254
dir: /lib/bio/test/mem.myr/

View raw version
use std
use bio

const main = {
	var f
	var buf : byte[16]

	f = bio.mkmem("hello world")
	match bio.read(f, buf[:3])
	| `bio.Ok "hel":
		/* ok */
	| _:
		std.fatal("invalid read from memfile")
	;;

	match bio.read(f, buf[:])
	| `bio.Ok "lo world":
		/* ok */
	| _:
		std.fatal("invalid read from memfile")
	;;

	match bio.read(f, buf[:])
	| `bio.Eof:
		/* ok */
	| _:
		std.fatal("expected eof in memfile")
	;;
}