8 lines
94 B
C++
Raw Normal View History

2022-05-17 01:13:42 +02:00
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}