class Song # ... def title # attribute reader @title # returns instance variable end def title=(title) # attribute setter @title = title end end