Skip to content

fitzypop/fitzypop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 

Repository files navigation

Fitzypop's Profile

Open Source Love vs code python rust js ts react kitty fish starship postgresql docker deno

#[derive(Debug)]
struct SomeDude<'a> {
    name: &'a str,
    current_role: &'a str,
    hobbies: Vec<&'a str>,
}

impl Default for SomeDude<'_> {
    fn default() -> Self {
        Self {
            name: "Fitzypop",
            current_role: "Software Engineer",
            hobbies: vec![
                "coding",
                "music and gear",
                "craft beer and microbrews",
                "weightlifting",
            ],
        }
    }
}

fn main() {
    println!("Sup, nerds. 🤙 Welcome to my profile!");
    
    let me = SomeDude::default();
    println!("{:?}", me);
}