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