RosettaCodeData/Task/Hello-world-Text/C++/hello-world-text.cpp
2015-11-18 06:14:39 +00:00

5 lines
81 B
C++

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