7 lines
85 B
C++
7 lines
85 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << "Hello, world\n";
|
|
return 0;
|
|
}
|