First commit

This commit is contained in:
Marcus Dicander 2025-02-22 13:41:28 +01:00
parent 2f0ee46c1e
commit 933a02f224

7
helloworld.cpp Normal file
View file

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