📍 Based in Cebu, Philippines
I began my career as a Software Engineer in May of 2022. I had quickly discovered how much I enjoyed solving problems involving software and have since been passionately honing my skills.
Feel free to contact me. I would love to hear about your next project idea.
struct SoftwareEngineer {
name: String,
role: String,
languages_spoken: Vec<String>,
}
impl SoftwareEngineer {
fn new() -> Self {
Self {
name: "Louis Borres".into(),
role: "Software Engineer".into(),
languages_spoken: vec!["English".into(), "Cebuano".into()],
}
}
fn say_hi(&self) {
println!("Hello and Thank you for reading. Hope you find some of my work interesting.");
}
}
fn main() {
let me = SoftwareEngineer::new();
me.say_hi();
}


