shithub: mc

ref: 25e411cf4abf1437c5e7bfebbe8e1190a921d2dd
dir: /test/catfile.myr/

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

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

	dat = std.slurp("data/catfile")
	std.write(1, dat)
	-> 0
}