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