Skip to content

Instantly share code, notes, and snippets.

@raghubetina
Created January 10, 2013 15:49
Show Gist options
  • Save raghubetina/4503064 to your computer and use it in GitHub Desktop.
Save raghubetina/4503064 to your computer and use it in GitHub Desktop.
first = "Meryl"
last = "Charleston"
birthday = "June 9"
puts "#{first} #{last} was born on #{birthday}."
first = "Rachel"
last = "Conley"
birthday = "October 31"
puts "#{first} #{last} was born on #{birthday}."
first = "Annette"
last = "Cochran"
birthday = "April 10"
puts "#{first} #{last} was born on #{birthday}."
first = "Miranda"
last = "Garfinkle"
birthday = "June 15"
puts "#{first} #{last} was born on #{birthday}."
first = "Sam"
last = "Reynolds"
birthday = "May 12"
puts "#{first} #{last} was born on #{birthday}."
first = "Jack"
last = "Reece"
birthday = "August 14"
puts "#{first} #{last} was born on #{birthday}."
first = "Adele"
last = "Rehkemper"
birthday = "January 12"
puts "#{first} #{last} was born on #{birthday}."
first = "Alex"
last = "Cohen"
birthday = "August 18"
puts "#{first} #{last} was born on #{birthday}."
first = "Mia"
last = "Epner"
birthday = "July 30"
puts "#{first} #{last} was born on #{birthday}."
first = "Asra"
last = "Ahmed"
birthday = "March 23"
puts "#{first} #{last} was born on #{birthday}."
first = "Baker"
last = "Franke"
birthday = "November 21"
puts "#{first} #{last} was born on #{birthday}."
first = "Raghu"
last = "Betina"
birthday = "July 1"
puts "#{first} #{last} was born on #{birthday}."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment