module Gemmy::Patches::ObjectPatch::InstanceMethods::Prompt

Prints a string then gets input @param txt [String]

Public Instance Methods

_prompt(txt) click to toggle source
# File lib/gemmy/patches/object_patch.rb, line 272
def _prompt(txt)
  puts txt
  gets.chomp
end