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