ref: 4db5274a2f6db10e31e11c503f36c85a98c65fbc 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) }