r4in_@desktop ~/me → cat src/main.rs
fn main(){
let whoami = json::object!{
age: "Undefined",
activity: "IT Student / Backpacker",
blog: "r4in.xyz",
email: "[email protected]",
projects: "Not Found...",
hobbies: ["Climbing", "Photography","..."],
};
let platforms = json::object!{
rootme: "https://www.root-me.org/r4in_",
thm: "https://tryhackme.com/r/p/0xr4in",
mastodon: "@[email protected]"
};
println!("👋 Welcome to my profile !");
println!("🎓 I'm an {}", whoami["activity"]);
println!("🌐 Blog : {}", whoami["blog"]);
println!("🛠️ I'm currrenly working on {}", whoami["projects"]);
println!("📝 And currently learning Rust 🦀");
println!("📩 You can reach at {} ", whoami["email"]);
println!("🐘 Or on mastodon {}", platforms["mastodon"]);
}