保存进度
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#include "message.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
static const string MESSAGE = "Hello World Message!";
|
||||
|
||||
void printMessage()
|
||||
{
|
||||
std::cout << MESSAGE;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
||||
using std::string;
|
||||
using std::cout;
|
||||
|
||||
extern const string MESSAGE;
|
||||
|
||||
void printMessage();
|
||||
Reference in New Issue
Block a user