mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 09:54:15 +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;
|
|
}
|
|
|