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