module Terminal::Table::TableHelper

def table headings = [], *rows, &block

def table headings = [], *rows, &block
  Terminal::Table.new :headings => headings.to_a, :rows => rows, &block
end