Skip to content

Instantly share code, notes, and snippets.

@ToreySound
Created October 25, 2013 03:51
Show Gist options
  • Save ToreySound/7149215 to your computer and use it in GitHub Desktop.
Save ToreySound/7149215 to your computer and use it in GitHub Desktop.
ticket = Object.new
print "This ticket is for: "
print ticket.event + ", at"
print ticket.venue + ", on "
puts ticket.date + "."
print "The performer is "
puts ticket.performer + "."
print "the seat is "
print ticket.seat + ", "
print "and it costs $"
puts "%.2f." % ticket.price
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment