When iterating over arguments (for example) thats the most straightforward way to skip the first N elements?
eg:
use std::env; fn main() { for arg in env::args() { println!("Argument: {}", arg); } } I tried env::args()[1..] but slicing isn't supported.
Whats the simplest way to skip the first arguments of an iterator?