ref: 91a715bcdfdd2c762c700b45591e74f42c4a0626
dir: /test/catfile.myr/
/* 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)
;;
}