Ticket #62770: hello_world.cc

File hello_world.cc, 94 bytes (added by haberg-1, 3 years ago)

Includes <iostream> and calls std::cout to trigger the issue.

Line 
1
2#include <iostream>
3
4int main() {
5  std::cout << "Hello World!" << std::endl;
6
7  return 0;
8}