Skip to content

Instantly share code, notes, and snippets.

@MelanieS
Created October 29, 2010 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MelanieS/652825 to your computer and use it in GitHub Desktop.
Save MelanieS/652825 to your computer and use it in GitHub Desktop.
puts( ' <(^.^)> LITTLE KNOWN FACTS O\' MELANIE <(^.^)>')
puts
puts( 'To play, select the letter that corresponds with your answer
then press return')
answer = ''
while answer != 'c'
puts( '#1 Gym class sux. How would Melanie get out of running laps in Elem school?')
puts
puts( 'a. She got a doctors note')
puts( 'b. She refused')
puts( 'c. She hid')
puts( 'd. She got extra help in another subject instead of going to gym')
answer = gets.chomp.downcase
end
puts( 'Correct!')
answer = ''
while answer != 'b'
puts( '#2 Melanie has a scar on her knee from kindergarten. How did she get it?')
puts
puts( 'a. She fell off the jungle gym')
puts( 'b. She was running in flip flops and tripped')
puts( 'c. She got beat up')
puts( 'd. Her brother threw something at her')
answer = gets.chomp.downcase
end
puts( 'Correct!')
answer = ''
while answer != 'a'
puts( '#3 Melanie failed ONE class in high school. Which was it?')
puts
puts( 'a. government')
puts( 'b. business services technology')
puts( 'c. geometry')
puts( 'd. art')
answer = gets.chomp.downcase
end
puts( 'Correct!')
answer = ''
while answer != 'c'
puts( '#4 Melanie is l337 fail at sports. Which sport did she play in high school?')
puts
puts( 'a. basketball')
puts( 'b. cheerleading')
puts( 'c. track')
puts( 'd. volleyball')
answer = gets.chomp.downcase
end
puts( 'Correct!')
answer = ''
while answer != 'b'
puts( '#5 Melanie went on a family vacation when she was 10. Where did she go?')
puts
puts( 'a. Virginia Beach, VA')
puts( 'b. Chattanooga, TN')
puts( 'c. Groton, CT')
puts( 'd. Tell City, IN')
answer = gets.chomp.downcase
end
puts( 'Correct!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment