# HG changeset patch # User HackBot # Date 1386344094 0 # Node ID 32a25cb6e416dffa85c5ad77b35c2e68101c6fd9 # Parent d67b3ddd4b610c37d1b8712b10cbb1c2717c3e4c echo -e \'#include \\nusing namespace std;\\nint main(void) {\\ncout << "Hello, world!" << endl;\\nreturn 0;\\n}\' >bin/a.cpp; g++ a.cpp -o bin/a; bin/a diff -r d67b3ddd4b61 -r 32a25cb6e416 bin/a.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/a.cpp Fri Dec 06 15:34:54 2013 +0000 @@ -0,0 +1,6 @@ +#include +using namespace std; +int main(void) { +cout << "Hello, world!" << endl; +return 0; +}