Skip to content

Instantly share code, notes, and snippets.

@ToreySound
Created October 25, 2013 03:59
Show Gist options
  • Select an option

  • Save ToreySound/7149274 to your computer and use it in GitHub Desktop.

Select an option

Save ToreySound/7149274 to your computer and use it in GitHub Desktop.
>> ticket = Object.new
=> #<Object:0x007fcc5a849c38>
>> def ticket.venue
>> "Town Hall"
>> end
=> nil
>> def ticket.performer
>> "Mark Twain"
>> end
=> nil
>> def ticket.event
>> "Author's Reading"
>> end
=> nil
>> def ticket.price
>> 5.50
>> end
=> nil
>> def ticket.seat
>> "Second Balcony, row J, seat 12"
>> end
=> nil
>> def ticket.date
>> "01/02/03"
>> end
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment