make a simple c++ project

This commit is contained in:
jopejoe1 2024-07-05 12:33:15 +02:00
parent 2757bd090c
commit 2d15d63dcb
8 changed files with 80 additions and 30 deletions

6
native/main.cpp Normal file
View file

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