ref: debe132462d524de672e982f5982cc5882d2490b 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("%i: %s\n", i, strtab[i]) ;; std.exit(0) }