mirror of
https://github.com/Kitware/CMake.git
synced 2026-07-11 00:57:38 +00:00
8 lines
96 B
C++
8 lines
96 B
C++
#include <iostream>
|
|
|
|
void print_message(const char* const Message)
|
|
{
|
|
std::cout << Message;
|
|
}
|
|
|