- boss
- nippy
- hubby
- fisticuffs
- nighters
- om nom nom
- curled up with a glass of wine
- I’m living life to the fullest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Write some classes to keep track of an artist's discography. Start by creating an | |
# artist, then an album, then songs. Add songs to the album and then add the | |
# album to the artist. Finally, call the discography method on the artist | |
# to print out a nice formatted string detailing that artist's discography. | |
# You should be able to use it like this: | |
nebyoolae = Artist.new('Nebyoolae') | |
cs13 = Album.new('Clocks Striking 13') |
NewerOlder