Initial commit

This commit is contained in:
2023-09-08 16:30:25 +02:00
commit ae7cf8c566
6 changed files with 180 additions and 0 deletions

7
ffmini.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "fmt/format.h"
auto main([[maybe_unused]]int argc, [[maybe_unused]]char const* argv[]) -> int {
fmt::print("Hello, World!\n");
return 0;
}