Files
CPM.cmake/examples/fmt/main.cpp
Lars Melchior cea81872cf Add fmt example and document version from git tag (#100)
* add VERSION_PREFIX argument

* add fmt example

* add VERSION_PREFIX note to readme

* rollback, add info about determining version from git tag

* rollback version
2020-03-16 20:00:30 +01:00

7 lines
90 B
C++

#include <fmt/format.h>
int main(){
fmt::print("Hello, {}!\n", "world");
return 0;
}