shithub: mc

ref: 0f2de28c580dd78160230b5b973c903378527623
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
}