Created
September 13, 2011 05:10
-
-
Save Bankq/1213167 to your computer and use it in GitHub Desktop.
test-syntax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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