---
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);
}




