1
0
Fork 0
libfort/examples/1-simple_table.cpp

17 lines
437 B
C++
Raw Normal View History

2019-09-22 09:18:15 +02:00
#include <iostream>
#include "fort.hpp"
int main()
{
2019-09-28 10:02:34 +02:00
fort::char_table table;
2019-09-22 09:18:15 +02:00
table << fort::header
<< "N" << "Driver" << "Time" << "Avg Speed" << fort::endr
<< "1" << "Ricciardo" << "1:25.945" << "47.362" << fort::endr
<< "2" << "Hamilton" << "1:26.373" << "35.02" << fort::endr
<< "3" << "Verstappen" << "1:26.469" << "29.78" << fort::endr;
std::cout << table.to_string() << std::endl;
}