mirror of
https://github.com/xfarrow/lasd.git
synced 2025-02-03 20:47:34 +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;
|
|
}
|