For env::args() I am having to explicitly include the env module by
use std::env;
But I am able to use Vec::new() without the use std::vec statement, though both are from the standard library.
Is there a subset of standard library modules that are made available by default for all programs?
>Solution :
Yes, everything in the Rust prelude (including std::vec::Vec) is available by default.