CrystalStuff/tallboy/tallboy.cr

14 lines
306 B
Crystal

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