Skip to content

Instantly share code, notes, and snippets.

@Gisleburt
Last active June 10, 2019 12:08
Show Gist options
  • Save Gisleburt/18452f1a46ee86afaa961815d3a76de7 to your computer and use it in GitHub Desktop.
Save Gisleburt/18452f1a46ee86afaa961815d3a76de7 to your computer and use it in GitHub Desktop.
fn main() {
let albums = vec![
Album {
title: "Sgt. Pepper's Lonely Hearts Club Band".into(),
artist: "The Beatles".into(),
},
Album {
title: "Dark Side of the Moon".into(),
artist: "Pink Floyd".into(),
},
];
println!("{}", albums);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment