Skip to content

Instantly share code, notes, and snippets.

@kilip
Created October 11, 2012 16:50
Show Gist options
  • Select an option

  • Save kilip/3873805 to your computer and use it in GitHub Desktop.

Select an option

Save kilip/3873805 to your computer and use it in GitHub Desktop.
C++ Hello World
#include <iostream>
int main()
{
std::cout << "Hello, World!\n";
}
@zeldafan1986
Copy link
Copy Markdown

$ g++ -o hello hello.cpp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment