i.e. we import module: ```rust use std::env::args; ``` and we arm args: ```rust let args: Vec<String> = args().collect(); ``` What would be nice is to optionally see in inlay hints from where args() is coming from ```rust //----------------------VVVVVVVV - that would be greyed out without writing it let args: Vec<String> = std::env::args().collect(); ``` That would increase readability. Especially for new rustaceans. :)