ref: 100ed8406343f027aa442e79fe59c653c8fc02a4
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.Fail msg: std.put("Failed to read file: {}\n", msg) ;; }