Skip to content

Instantly share code, notes, and snippets.

@Gisleburt
Last active June 10, 2019 12:23
Show Gist options
  • Save Gisleburt/3b6f01504c15e4e2ffca6cef3f9ae103 to your computer and use it in GitHub Desktop.
Save Gisleburt/3b6f01504c15e4e2ffca6cef3f9ae103 to your computer and use it in GitHub Desktop.
fn main() {
let albums = 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