module Borrower::Util

Public Class Methods

get_input(message) click to toggle source

get input from the command line @return [String]

# File lib/borrower/util.rb, line 7
def get_input message
  print message
  $stdin.gets.chomp
end