mirror of
https://github.com/xfarrow/lasd.git
synced 2025-02-09 16:48:45 +01:00
18 lines
263 B
C++
18 lines
263 B
C++
|
|
||
|
#include <iostream>
|
||
|
|
||
|
#include "test.hpp"
|
||
|
// #include "testx.hpp"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
// void testx() {}; // cout << "";
|
||
|
|
||
|
int main() {
|
||
|
cout << "Call to a function: #";
|
||
|
test();
|
||
|
// testx();
|
||
|
cout << "# Return from a function call!" << endl;
|
||
|
return 0;
|
||
|
}
|