shithub: mc

ref: 9c1dd3355d31004cc2875f1ed055372e9b8b6d50
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
}