struct Student<'a> {
name: &'a str,
age: u8,
college: &'a str,
languages: Vec<&'a str>,
cats: Vec<Cat>,
}
fn main() {
let me = Student {
name: "Jorge Terence",
age: 19,
college: "Fatec SCS",
languages: vec!["Português", "English", "日本語"],
cats: vec![nico],
};
}
Pinned Loading
-
-
-
-
AMSTeamONE/Interfatec-2024-1
AMSTeamONE/Interfatec-2024-1 PublicSoluções para a 1ª fase da maratona de programação
Python 4
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.