changeset 4139:32a25cb6e416

<boily> echo -e \'#include <iostream>\\nusing namespace std;\\nint main(void) {\\ncout << "Hello, world!" << endl;\\nreturn 0;\\n}\' >bin/a.cpp; g++ a.cpp -o bin/a; bin/a
author HackBot
date Fri, 06 Dec 2013 15:34:54 +0000
parents d67b3ddd4b61
children 6adc9658b827
files bin/a.cpp
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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 <iostream>
+using namespace std;
+int main(void) {
+cout << "Hello, world!" << endl;
+return 0;
+}