dan63/C++/hello_world.cpp
2022-05-26 00:58:57 +03:00

6 lines
94 B
C++

#include <iostream>
int main(){
std::cout << "Hello world!" << std::endl;
return 0;
}