fn age_group(age: i32) -> Result<String, String> { let valid_age = match age { _ if age < 0 => return Err("not born yet".to_string()), ...
確定! 回上一頁