From e83906eca564cddaa231c958a7a501ada37bfa9d Mon Sep 17 00:00:00 2001 From: Jinglun Date: Tue, 23 Oct 2012 18:06:31 -0400 Subject: [PATCH] hello-world --- README | 1 - hello-world.js | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) delete mode 100644 README create mode 100644 hello-world.js diff --git a/README b/README deleted file mode 100644 index 2ba2bcc..0000000 --- a/README +++ /dev/null @@ -1 +0,0 @@ -Learn Node.jS diff --git a/hello-world.js b/hello-world.js new file mode 100644 index 0000000..95c2110 --- /dev/null +++ b/hello-world.js @@ -0,0 +1,5 @@ + setTimeout(function() { + console.log("world"); + }, 2000) + + console.log("hello");