fn might_print(option: Option<&str>) { match option { Some(text) => println!("The argument contains the following value: '{}'", text), ...
確定! 回上一頁