ref: e5b424be893e7f771456a548ab66e1bcb7ed50d3
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)
;;
}