mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 12:14:36 +03:00
9 lines
159 B
C++
9 lines
159 B
C++
#include <iostream>
|
|
#include <fmt/format.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
fmt::print("Hello, {}. This is {}!\n", "conan", "fmtlib");
|
|
return 0;
|
|
}
|