struct Me {
name: &'static str,
handle: &'static str,
loves: Vec<&'static str>,
}
fn main() {
let me = Me {
name: "Tanapat Chamted",
handle: "makufff",
loves: vec!["Rust", "NixOS", "Lofi", "Cats πββ¬"],
};
println!("ε°γγ§γδΌγγγε¬γγγͺ β¨");
}πΌ Because the song you gave me made me love music! πββ¬π¦
β¨ ε°γγ§γδΌγγγε¬γγγͺ




