Skip to content

Instantly share code, notes, and snippets.

@Sapphiron532
Last active August 29, 2015 23:37
Show Gist options
  • Save Sapphiron532/9c8cbaa5a0d25c79901e to your computer and use it in GitHub Desktop.
Save Sapphiron532/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