Skip to content

Instantly share code, notes, and snippets.

@jcreager
Created May 2, 2016 05:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcreager/d70934b4d7fd413ac10db1a2825d3ca7 to your computer and use it in GitHub Desktop.
Save jcreager/d70934b4d7fd413ac10db1a2825d3ca7 to your computer and use it in GitHub Desktop.
Print Hello World in c++
#include <iostream>
int main()
{
std::cout << "Hello, world!\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment