Skip to content

Instantly share code, notes, and snippets.

Created February 10, 2015 20:04
Show Gist options
  • Save anonymous/6933028cc36556a2a6fc to your computer and use it in GitHub Desktop.
Save anonymous/6933028cc36556a2a6fc to your computer and use it in GitHub Desktop.
What's wrong with this basic if, elseif?
puts "Which score is this? Please type 1, 2, or 3 then [ENTER]"
score = gets.chomp
if score == 1
puts "Initializing Score 1"
elseif score == 2
puts "Initializing Score 2"
elseif score == 3
puts "Initializing Score 3"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment