struct Developer {
name: &'static str,
role: &'static str,
location: &'static str,
focus: Vec<&'static str>,
}
fn main() {
let me = Developer {
name: "Marcos Flávio",
role: "Back-end Developer @ JustTravel",
location: "Brazil, São Paulo",
focus: vec!["Systems", "Web", "DevOps", "Functional Programming"],
};
println!("Currently leveling up: DevOps ");
println!("Reach me at: mfghost69@gmail.com ");
}
Pinned Loading
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.



