ππ» Hi there!
π I'm a student at University of Applied Sciences Leiden, passionate about software engineering.
πΌ Currently an intern at the Ministry of the Interior and Kingdom Relations in the Netherlands.
π¬ Want to contact me? Feel free to reach me here!
struct Developer {
language: &'static str,
status: &'static str,
}
fn main() {
let me = Developer {
language: "Rust",
status: "Learning and exploring the Rust programming language",
};
println!("π¦ {} aficionado", me.language);
println!("Status: {}", me.status);
}$ cargo run
π¦ Rust aficionado
Status: Learning and exploring the Rust programming language



