I just started to play around with Rust. Trying to run the code snippet below will result in a compile time error with the message: type ascription is experimental.
use std::env;
fn main() {
let arguments: Args = env:args();
}
The docs for env:args shows that the function returns an Args struct and the Variable Binding section shows that I can set type of the variables with let varname: type = value. How I can properly assign a return value of a function to a variable?