Class: I15R::ConsolePrinter

Inherits:
Object
  • Object
show all
Defined in:
lib/i15r/console_printer.rb

Instance Method Summary collapse

Instance Method Details



7
8
9
10
11
# File 'lib/i15r/console_printer.rb', line 7

def print_diff(old_row, new_row)
  puts "- #{old_row}"
  puts "+ #{new_row}"
  puts
end

#println(text) ⇒ Object



3
4
5
# File 'lib/i15r/console_printer.rb', line 3

def println(text)
  puts text
end