1 2 3 4 5 6 7 8 9 10
#include "Order.hpp" #include "OrderFormatter.hpp" #include <iostream> int main() { Order *order = sample_order(); std::cout << format_order(order) << '\n'; return 0; }