mirror of
https://github.com/reactos/CMake.git
synced 2025-01-20 02:12:35 +00:00
8 lines
96 B
C++
8 lines
96 B
C++
#include <iostream>
|
|
|
|
void print_message(const char* const Message)
|
|
{
|
|
std::cout << Message;
|
|
}
|
|
|