Alessandro Ferro 2e5192afe6 Initial commit
2021-03-18 21:54:45 +01:00

9 lines
123 B
C++
Executable File

#include <iostream>
#include "test.hpp"
using namespace std;
int main(){
cout<<"I'm main"<<endl;
test();
return 0;
}