mirror of
https://github.com/reactos/CMake.git
synced 2025-01-09 05:00:35 +00:00
9 lines
141 B
C++
9 lines
141 B
C++
extern void print_message(const char* const Message);
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
print_message("Howdy, World!\n");
|
|
return 0;
|
|
}
|
|
|