Created
May 2, 2016 05:39
-
-
Save jcreager/d70934b4d7fd413ac10db1a2825d3ca7 to your computer and use it in GitHub Desktop.
Print Hello World in c++
This file contains 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 <iostream> | |
int main() | |
{ | |
std::cout << "Hello, world!\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment