Skip to content

Instantly share code, notes, and snippets.

@wjx0912
Created April 8, 2018 03:16
Show Gist options
  • Save wjx0912/0c48d17f58928068bcb44296ccd297d7 to your computer and use it in GitHub Desktop.
Save wjx0912/0c48d17f58928068bcb44296ccd297d7 to your computer and use it in GitHub Desktop.
hello world example: c++ language
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "hello, world." << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment