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(", "));
}Cool Work > GitDash - A Rust CLI tool to stalk GitHub profiles without ever leaving your terminal.

