- 🌱 I’m learning Rust and forever will be <3
- 📚 Graduated Zealand Business College, taking an HTX
struct Developer {
name: &'static str,
pronouns: &'static str,
code: Vec<&'static str>,
tools: Vec<&'static str>,
}
fn main() {
let sebby = Developer {
name: "Sebastian",
pronouns: "He/Him",
code: vec!["Rust", "C#", "Python", "Typescript", "HTML", "CSS"],
tools: vec!["Tauri", "SolidJS", "Node", "Bun", "Tailwindcss"],
};
}