Last active
August 29, 2015 23:37
-
-
Save Sapphiron532/9c8cbaa5a0d25c79901e to your computer and use it in GitHub Desktop.
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> | |
#include <cstdlib> // для system | |
using namespace std; | |
int main() | |
{ | |
cout << "Hello, world!" << endl; | |
system("pause"); // Только для тех, у кого MS Visual Studio | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment