| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abuse👋Hello, I'm Alex
pub fn main<'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 definitions
pub struct Me<'a> {
name: &'a str,
uptime_years: u64,
pronouns: Vec<&'a str>, // Vector because pronouns could be added or removed during human's runtime
favorite_languages: Vec<&'a str>,
software_preferences: SoftwarePreferences<'a>,
}
pub struct SoftwarePreferences<'a> {
os: &'a str,
desktop_environment: &'a str,
browser: &'a str,
search_engine: &'a str, // Not local software, but software nevertheless
editor: &'a str,
}Visual simulation of PD-PD forces
GDScript 2
| Back | FazBrowse Home | New Git URL |