feat: initial commit

This commit is contained in:
Cat Flynn 2023-07-23 16:45:15 +02:00
commit b14f8d5950
1 changed files with 7 additions and 0 deletions

7
hello.cpp Normal file
View File

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