mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-18 23:27:37 -05:00
7 lines
90 B
C++
7 lines
90 B
C++
|
|
#include <fmt/format.h>
|
||
|
|
|
||
|
|
int main(){
|
||
|
|
fmt::print("Hello, {}!\n", "world");
|
||
|
|
return 0;
|
||
|
|
}
|