shithub: mc

ref: 65373d4ddad67da6f711b6ab962f18e9d8e6a558
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.Fail msg:	std.put("Failed to read file: %s\n", msg)
	;;
	-> 0
}