This commit is contained in:
Toast 2025-04-17 13:02:17 +02:00
commit 2209bda83f
7 changed files with 60 additions and 0 deletions

1
src/CMakeLists.txt Normal file
View file

@ -0,0 +1 @@
add_executable(Hello helloWorld.cpp)

6
src/helloWorld.cpp Normal file
View file

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