This commit is contained in:
Pcornat 2022-01-08 20:02:04 +01:00
commit d43806895e
Signed by: Pcornat
GPG key ID: 2F3932FF46D9ECA0
6 changed files with 29 additions and 0 deletions

6
src/main.cpp Normal file
View file

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