👋Hello, I'm Alex
pubfnmain<'a>() -> Me<'a>{Me{name:"Alex Gorichev",uptime_years:20,pronouns:vec!["he","him"],favorite_languages:vec!["Rust","Python","GDScript"],software_preferences:SoftwarePreferences{os:"Arch linux",desktop_environment:"Hyprland",browser:"Firefox",search_engine:"Ecosia",editor:"Helix",},}}// Struct definitionspubstructMe<'a>{name:&'astr,uptime_years:u64,pronouns:Vec<&'astr>,// Vector because pronouns could be added or removed during human's runtimefavorite_languages:Vec<&'astr>,software_preferences:SoftwarePreferences<'a>,}pubstructSoftwarePreferences<'a>{os:&'astr,desktop_environment:&'astr,browser:&'astr,search_engine:&'astr,// Not local software, but software neverthelesseditor:&'astr,}




