Created
October 25, 2013 03:51
-
-
Save ToreySound/7149215 to your computer and use it in GitHub Desktop.
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
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