Skip to content
Snippets Groups Projects
helloworld.cpp 92 B
Newer Older
Ciaron Linstead's avatar
Ciaron Linstead committed
#include <iostream>
int main()
{
  std::cout << "Hello, World!" << std::endl;
  return 0;
}