Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 277 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 277 Bytes

nfmt

A naive C++ format library implementation with C++ 17.

#Usage

#include "Fmt.hpp"
#include <string>

int main()
{
    using namespace std::string_literals;
    const auto str = Format("I'm {} years old and grade {}.\n {} {{}}", 2, 3, "This is a brace "s);
}