Initial Commit

This commit is contained in:
2024-07-10 15:21:25 -04:00
commit be37e45664
2 changed files with 13 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.28)
project(RedactedJUI)
set(CMAKE_CXX_STANDARD 20)
add_executable(RedactedJUI main.cpp)

7
main.cpp Normal file
View File

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