保存进度

This commit is contained in:
2026-07-14 23:20:12 +08:00
commit 79c836426c
14 changed files with 510 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "message.h"
using namespace std;
static const string MESSAGE = "Hello World Message!";
void printMessage()
{
std::cout << MESSAGE;
}
+9
View File
@@ -0,0 +1,9 @@
#include <string>
#include <iostream>
using std::string;
using std::cout;
extern const string MESSAGE;
void printMessage();