7 lines
195 B
Rust
7 lines
195 B
Rust
|
|
|
|
fn main(vec[str] args) {
|
|
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; } }
|
|
} |