struct Developer {
name: &'static str,
role: &'static str,
langs: [&'static str; 6],
interests: [&'static str; 2],
}
fn main() {
let rakshit = Developer {
name: "Rakshit Shukla",
role: "Full Stack Web3 Developer & UI/UX Designer π",
langs: ["π TypeScript", "ποΈ Solidity", "π Javascript", "β‘ C++", "β½ Rust", "π Python"],
interests: ["π Ethereum Development", "βοΈ Solana Development"],
};
println!("Hi, I'm {} π", rakshit.name);
println!("{}", rakshit.role);
println!("Languages: {}", rakshit.langs.join(", "));
println!("Currently exploring: {}", rakshit.interests.join(", "));
}- π Building innovative Web3 applications and blockchain solutions
- π± Deep diving into Solana development
- π¨ Passionate about creating beautiful and functional user experiences
- β‘ Fun fact: I debug code faster than I debug my life choices!
π» "Code is poetry written in logic" π»


