Method: RPNCalculator.start_cli_tool

Defined in:
lib/rpn-calculator.rb

.start_cli_toolObject



23
24
25
26
27
28
# File 'lib/rpn-calculator.rb', line 23

def start_cli_tool
  # Here is where we could read and write to another input
  # using stdin and stdout by default
  processor = CLI.new(IoInterface::Standard.new, INPUT_PROCESSOR)
  processor.start
end