shithub: mc

ref: e1af5fb55cc3f4cdf36112df3bd3840447b930d9
dir: /test/catfile.myr/

View raw version
/* checks that we can read a data file. */
use std

const main = {args : byte[:][:]
	var r

	r = std.slurp("data/catfile-in")
	match r
	| `std.Ok dat: 	std.write(1, dat)
	| `std.Err msg:	std.put("Failed to read file: {}\n", msg)
	;;
}