Skip to content

Instantly share code, notes, and snippets.

@yoshiokatsuneo
Created August 8, 2014 05:54
Show Gist options
  • Save yoshiokatsuneo/d534b6653b08d51bb44a to your computer and use it in GitHub Desktop.
Save yoshiokatsuneo/d534b6653b08d51bb44a to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main(){
cout << "Hello C++" << endl;
}
@miguelmax
Copy link

include

int main(){
std::cout << "Hello C++";
}

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