Simple c++17 constexpr compile time formatting
Simple c++17 compile time formatting implemented with constexpr.\
Use python format syntax.
Usage:
#include <format.hpp>
#include <boost/hana/string.hpp>
using namespace boost::hana::literals;
std::cout << format("string: {1}, number: {0}"_s, 1, "asdf");
#include <format.hpp>
std::cout << FORMAT("string: {1}, number: {0}")(1, "asdf");