class Object

Public Instance Methods

ask(question) click to toggle source
# File lib/noty/ask.rb, line 3
def ask(question)
  print question
  puts choice = $stdin.getch
  choice
end