From 52198e981b10c0f65ef69143e05748da6fff19f2 Mon Sep 17 00:00:00 2001 From: WillyFerry Date: Thu, 24 Oct 2019 22:11:50 +0700 Subject: [PATCH 1/2] add hello_world.cpp --- hello_world.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello_world.cpp diff --git a/hello_world.cpp b/hello_world.cpp new file mode 100644 index 0000000..58d3468 --- /dev/null +++ b/hello_world.cpp @@ -0,0 +1,6 @@ +#include +using namespace std; + +int main(){ + cout << "Hello World"; +} From 742e23a4300fe6ba2c5c6a0ba65e526541d9e567 Mon Sep 17 00:00:00 2001 From: WillyFerry Date: Thu, 24 Oct 2019 22:24:20 +0700 Subject: [PATCH 2/2] add javascript hello_world --- hello_world.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello_world.js diff --git a/hello_world.js b/hello_world.js new file mode 100644 index 0000000..ee7512b --- /dev/null +++ b/hello_world.js @@ -0,0 +1 @@ +document.write("hello world"); \ No newline at end of file