Skip to content

Instantly share code, notes, and snippets.

@hsandid
Last active February 12, 2018 16:42
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 hsandid/ea4c35473e16a87f0aa72b6a6f3a77fa to your computer and use it in GitHub Desktop.
Save hsandid/ea4c35473e16a87f0aa72b6a6f3a77fa to your computer and use it in GitHub Desktop.
// This line and the 2 lines below are just comments.
// Comments are good for you but they are ignored by the compiler
// A first program in C++
#include <iostream>
using namespace std;
int main()
{
cout<<"Welcome to C++!"<<endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment