Award winning spaghetti chef
Award winning insect breeder
(In code, also a joke)
struct Person<'a> {
name: &'a str,
pronouns: &'a str,
languages: Vec<&'a str>,
websites: Vec<&'a str>,
}
fn main() {
let me = Person {
name: "Byte Dice",
pronouns: "up to your imagination (any)",
languages: vec![
"Rust",
"HTML / CSS / JS",
"Kotlin",
"Python",
"C#"
],
websites: vec!["https://ByteDice.net"]
};
// unoptimal but more readable
println!("Hello, I'm {}!", me.name);
println!("My pronouns are {}.", me.pronouns);
println!("I code in {}.", me.languages.join(", "));
println!("Check out my websites:\n{}", me.websites.join("\n"));
}- Apparently people think I'm a femboy
- I really, really love Rust
- ...I know why people think I'm a femboy
