Skip to content

Instantly share code, notes, and snippets.

Created November 14, 2012 13:52
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 anonymous/63a64c8721811dea2b30 to your computer and use it in GitHub Desktop.
Save anonymous/63a64c8721811dea2b30 to your computer and use it in GitHub Desktop.
class Options
puts "1 = Login , 2 = News title, 3 = News body"
option = gets()
if option == 1
puts "Login"
end
if option == 2
puts "News title"
else
puts "News body"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment