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