11 lines
174 B
C++
11 lines
174 B
C++
#include <fmt/core.h>
|
|
|
|
int main()
|
|
{
|
|
fmt::print("Hello, {}!", "world"); // uses Python-like format string syntax
|
|
|
|
fmt::print("The answer is {}\n", 42);
|
|
|
|
return 0;
|
|
}
|