cpp-hello-world/helloworld.cpp

6 lines
92 B
C++
Raw Permalink Normal View History

2022-09-21 19:34:05 +02:00
#include <iostream>
int main()
{
std::cout << "Hello horrible world!!!" << std::endl;
}