Method: BCDice::REPL#run

Defined in:
lib/bcdice/repl.rb

#runvoid

This method returns an undefined value.

REPLを開始する



60
61
62
63
64
65
66
# File 'lib/bcdice/repl.rb', line 60

def run
  puts "BCDice REPL"
  puts '>> "help" shows help messages.'
  loop do
    run_once()
  end
end