Skip to content

Instantly share code, notes, and snippets.

@Bankq
Created September 13, 2011 05:10
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 Bankq/1213167 to your computer and use it in GitHub Desktop.
Save Bankq/1213167 to your computer and use it in GitHub Desktop.
test-syntax
#include "stdlib.h"
#include <iostream>
using namespace std;
int
main(int argc, char** argv){
char* text = "Hello World!\n"
//This is a comment
cout << text << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment