lasd/teoria/esempi_professore/examples/structured/main.cpp

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