From 0e7999f2d147b026aaee6693bdd2be2cb4a2519e Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 8 Oct 2024 23:33:21 +0200 Subject: Start work on formatting --- asl/format.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 asl/format.cpp (limited to 'asl/format.cpp') diff --git a/asl/format.cpp b/asl/format.cpp new file mode 100644 index 0000000..890e532 --- /dev/null +++ b/asl/format.cpp @@ -0,0 +1,12 @@ +#include "asl/format.hpp" + +void asl::format_internals::format( + writer* writer, + const char* fmt, + const type_erased_arg* args, + int64_t arg_count) +{ + formatter f(writer); + + f.write("Hello", 5); +} -- cgit