struct Profile {
name: &'static str,
languages: [&'static str; 4],
}
fn main() {
let me = Profile {
name: "James",
languages: ["Python", "Typescript", "Rust", "Solidity"]
};
println!("Hi 👋, I'm {}", me.name);
println!("I cook with {:}", me.languages.join(", "));
}| > DHIRAJ AYU ACADEMY – An Android app that helps Ayurveda students prepare for competitive exams like AIAPGET, GPSC etc., made for a professor at Nobel University. |
| > GitDash – A Rust CLI tool to stalk GitHub profiles without ever leaving your terminal. |

