CrystalStuff/tallboy/tallboy.cr

15 lines
356 B
Crystal

require "colorize"
require "tallboy"
table = Tallboy.table do
header ["Favorite Artist", "Rank"]
row ["Eyes Set to Kill", "First love)"]
row ["Adept", "Самые крутые"]
row ["Caliban", "Second"]
row ["билборды".colorize(:magenta).mode(:bold), "New Love!1"]
end
puts table
puts table.render(:ascii)
puts table.render(:markdown)