Files

10 lines
148 B
C++
Raw Permalink Normal View History

2026-07-14 23:20:12 +08:00
#include "message.h"
using namespace std;
static const string MESSAGE = "Hello World Message!";
void printMessage()
{
std::cout << MESSAGE;
}