mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-17 14:47:30 -05:00
* add VERSION_PREFIX argument * add fmt example * add VERSION_PREFIX note to readme * rollback, add info about determining version from git tag * rollback version
7 lines
90 B
C++
7 lines
90 B
C++
#include <fmt/format.h>
|
|
|
|
int main(){
|
|
fmt::print("Hello, {}!\n", "world");
|
|
return 0;
|
|
}
|