ref: fdf87b91c1bbd64be75b8438ad6eaf492325e5b4 dir: /test/strtab.myr/
use std const strtab = [ "foo", "bar", "baz", "quux" ] const main = { var i for i = 0; i < strtab.len; i++ std.put("{}: {}\n", i, strtab[i]) ;; std.exit(0) }