summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-09-28 17:37:34 +0200
committerRyan Dahl <ry@tinyclouds.org>2009-09-28 18:48:19 +0200
commit27738d8e60bc57aac5dba25041faf413caefe1f8 (patch)
tree078ac0de3783fbe3d91cb6767bc528b56be6a96b /bin
parent835554c92b85e78a13498a428041f29962caaf3c (diff)
downloadnode-new-27738d8e60bc57aac5dba25041faf413caefe1f8.tar.gz
Clean up some things in the repl, add docs.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/node-repl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/node-repl b/bin/node-repl
index ae5ca9d6fe..20f04e89fc 100755
--- a/bin/node-repl
+++ b/bin/node-repl
@@ -6,6 +6,6 @@ puts("Enter ECMAScript at the prompt.");
puts("Tip 1: Use 'rlwrap node-repl' for a better interface");
puts("Tip 2: Type Control-D to exit.");
-include("/repl.js");
+require("/repl.js").start();
// vim:ft=javascript