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