---
struct Developer {
name: String,
role: String,
passion: Vec<String>,
}
fn main() {
let mohsen = Developer {
name: "Mohsen".to_string(),
role: "Full-Stack & Blockchain Engineer".to_string(),
passion: vec![
"🔐 Smart Contracts".to_string(),
"🚀 High-Performance Systems".to_string(),
"🦀 Rust & C++ Internals".to_string()
],
};
println!("Ready to deploy: {:?}", mohsen);
}




