Files
Code/cplusplus/learning/tut1/main.cpp
dl92 67aa4d8692 initial commit
working C++ Development Setup on Linux (VS Code + CMake + vcpkg + clang
)
2026-01-07 22:43:33 +00:00

13 lines
187 B
C++

#include <iostream>
#include <fmt/core.h>
int main() {
std::cout << "Hello from tut1\n";
fmt::print("Hello from {} using fmt {}\n", "tut1", FMT_VERSION);
return 0;
}