Skip to content

Instantly share code, notes, and snippets.

@Shameera17
Forked from jonathonw/HelloWorld.cpp
Created October 27, 2018 07:31
Show Gist options
  • Save Shameera17/32d8d2092f5d0526549204cd5fc9cc79 to your computer and use it in GitHub Desktop.
Save Shameera17/32d8d2092f5d0526549204cd5fc9cc79 to your computer and use it in GitHub Desktop.
C++ Hello World
#include <iostream>
int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment