HelloWorld/helloworld.cpp
Marcus Dicander 933a02f224 First commit
2025-02-22 13:41:28 +01:00

7 lines
No EOL
104 B
C++

#include <iostream>
using namespace std;
int main() {
std::cout << "Hello, World!" << std::endl;
}