commit 43e05597ac1a2fd774e7d49005acea590ce9e599 Author: haxala1r Date: Tue Sep 30 15:04:54 2025 +0300 Initial commit (simple build skeleton) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..749c558 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,3 @@ +project(lispy_stuff) + +add_executable(main src/main.cpp) \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..257ddca --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,8 @@ +#include + +using namespace std; + +int main() { + cout << "hi" << endl; + return 0; +} \ No newline at end of file