#include <fmt/printf.h>

int main() {
    fmt::printf("Hello, %s!", "world"); // uses printf format string syntax
}


