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