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");
|
||
|
}
|
||
|
|