1
0
Fork 0

[C] Updated README

This commit is contained in:
seleznevae 2018-11-23 21:30:48 +03:00
parent 5239b8e9a1
commit ddf8d44b60
1 changed files with 5 additions and 5 deletions

View File

@ -92,7 +92,7 @@ int main(void)
#include "fort.hpp"
int main(void)
{
fort::Table table;
fort::table table;
table << fort::header
<< "N" << "Driver" << "Time" << "Avg Speed" << fort::endr
<< "1" << "Ricciardo" << "1:25.945" << "47.362" << fort::endr
@ -149,7 +149,7 @@ int main(void)
#include "fort.hpp"
int main(void)
{
fort::Table table;
fort::table table;
/* Change border style */
table.set_border_style(FT_DOUBLE2_STYLE);
@ -160,8 +160,8 @@ int main(void)
<< "2001: A Space Odyssey" << "Stanley Kubrick" << "1968" << "8.5" << fort::endr;
/* Set center alignment for the 1st and 3rd columns */
table.set_cell_text_align(FT_ANY_ROW, 1, fort::TextAlign::Center);
table.set_cell_text_align(FT_ANY_ROW, 3, fort::TextAlign::Center);
table.column(1).set_cell_text_align(fort::text_align::center);
table.column(3).set_cell_text_align(fort::text_align::center);
std::cout << table.to_string() << std::endl;
}
@ -214,7 +214,7 @@ int main(void)
#include "fort.hpp"
int main(void)
{
fort::Table table;
fort::table table;
table << fort::header;
/* Fill each cell with operator[] */
table [0][0] = "N";