lasd/teoria/multiple_files/main.cpp

9 lines
123 B
C++
Raw Permalink Normal View History

2021-03-18 21:54:45 +01:00
#include <iostream>
#include "test.hpp"
using namespace std;
int main(){
cout<<"I'm main"<<endl;
test();
return 0;
}