struct Developer {
name: &'static str,
languages: Vec<&'static str>,
currently_learning: &'static str,
fun_fact: &'static str,
}
impl Developer {
fn new() -> Self {
Self {
name: "Esmil",
languages: vec!["C++ (started here)", "Rust (current obsession)"],
currently_learning: "Rust ecosystem",
fun_fact: "Started with C++, stayed for Rust 🦀",
}
}
}- 🦀 Languages: C++ → Rust
- 🌱 Learning: Rust development
- 🔧 Building: Personal Rust projects
- ☕ Status: Powered by coffee

