class Apostrophe

Attributes

artist[RW]
songs[RW]
title[RW]
year[RW]

Public Class Methods

new(title="Apostrophe", songs=["Yellow Snow", "Nanook", "Stinkfoot"], artist="Frank Zappa", year="1974") click to toggle source
# File lib/crux_drlctr.rb, line 5
def initialize(title="Apostrophe", songs=["Yellow Snow", "Nanook", "Stinkfoot"], artist="Frank Zappa", year="1974")
        puts "The Crux of the Biscuit is the Apostrophe"
        @title=title
        @songs=songs
        @artist=artist
        @year=year
end