You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Full-Stack developer passionate about Rust and Python!
structSoftwareEngineer{name:&'staticstr,founder:&'staticstr,language_spoken:Vec<&'staticstr>,favorite_languages:Vec<&'staticstr>,}implSoftwareEngineer{fnnew() -> SoftwareEngineer{SoftwareEngineer{name:"Rahel Martim",founder:"ArapuΓ‘",language_spoken:vec!["pt_BR","en_US"],favorite_languages:vec!["Rust","Python","C#","JavaScript"],}}fnsay_hi(&self){println!("Thanks for dropping by, hope you find some of my work interesting.");}}fnmain(){let me = SoftwareEngineer::new();
me.say_hi();}