# File lib/luck/ansi.rb, line 15
  def put row, col, text
    text.each_line do |line|
      print "\e[#{row.to_i};#{col.to_i}H#{line}"
      row += 1
    end
  end