b01d9fbda0
删除了一些不明所以的 Cplus 项目
10 lines
157 B
C++
10 lines
157 B
C++
#include <iostream>
|
|
using namespace std;
|
|
#include "function.h"
|
|
|
|
void function_01(){
|
|
cout << "function - 01 is running!" << endl;
|
|
system("pause");
|
|
}
|
|
|