2012-06-25 22:00:46 -05:00
|
|
|
fn main(args: [str]/~) {
|
2012-06-28 19:31:05 -05:00
|
|
|
let vs: [str]/~ = ["hi", "there", "this", "is", "a", "vec"]/~;
|
2012-06-25 22:00:46 -05:00
|
|
|
let vvs: [[str]/~]/~ = [args, vs]/~;
|
2012-04-06 13:01:43 -05:00
|
|
|
for vvs.each {|vs| for vs.each {|s| log(debug, s); } }
|
2011-08-15 23:54:52 -05:00
|
|
|
}
|