Jude Okechukwu (Jays Mucci) - Seasoned Programmer and Reseacher with experience in Building Robust Software
struct Programmer {
name: &'static str,
experience: &'static str,
focus: Vec<&'static str>,
location: &'static str,
}
const ME: Programmer = Programmer {
name: "Jude Okechukwu (Jays Mucci)",
experience: "6+ years",
focus: vec![
"Software Development",
"Mobile Apps",
"Backend Systems",
"Cloud Infrastructure",
],
location: "Nigeria",
};