mirror of
https://github.com/xfarrow/lasd.git
synced 2025-02-16 20:20:37 +01:00
9 lines
123 B
C++
9 lines
123 B
C++
|
#include <iostream>
|
||
|
#include "test.hpp"
|
||
|
using namespace std;
|
||
|
int main(){
|
||
|
cout<<"I'm main"<<endl;
|
||
|
test();
|
||
|
return 0;
|
||
|
}
|