cpp-hello-world/helloworld.cpp

6 lines
92 B
C++

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