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?