Initial commit (simple build skeleton)

This commit is contained in:
haxala1r
2025-09-30 15:04:54 +03:00
committed by Emin Arslan
commit 43e05597ac
3 changed files with 12 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
build/
+3
View File
@@ -0,0 +1,3 @@
project(lispy_stuff)
add_executable(main src/main.cpp)
+8
View File
@@ -0,0 +1,8 @@
#include <iostream>
using namespace std;
int main() {
cout << "hi" << endl;
return 0;
}