13 lines
187 B
C++
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;
|
|
}
|
|
|