Skip to content

Instantly share code, notes, and snippets.

@sidorov-it
Last active August 29, 2015 23:37
Show Gist options
  • Select an option

  • Save sidorov-it/9c8cbaa5a0d25c79901e to your computer and use it in GitHub Desktop.

Select an option

Save sidorov-it/9c8cbaa5a0d25c79901e to your computer and use it in GitHub Desktop.
#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