initail commit

This commit is contained in:
Joseph Aquino 2025-12-25 11:26:20 -05:00
commit e9651bce0d
3 changed files with 1087 additions and 0 deletions

1072
.gitignore vendored Normal file

File diff suppressed because it is too large Load Diff

8
CMakeLists.txt Normal file
View File

@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 4.1)
project(shell)
set(CMAKE_CXX_STANDARD 23)
add_executable(shell src/main.cpp)
target_link_libraries(shell PRIVATE readline)

7
src/main.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
int main()
{
std::cout << "Hello, World!" << std::endl;
return 0;
}