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