2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
fn main(vec[str] args) {
|
2011-06-15 13:19:50 -05:00
|
|
|
let vec[str] vs = ["hi", "there", "this", "is", "a", "vec"];
|
|
|
|
let vec[vec[str]] vvs = [args, vs];
|
|
|
|
for (vec[str] vs in vvs) { for (str s in vs) { log s; } }
|
|
|
|
}
|