diff options
author | visionmedia <tj@vision-media.ca> | 2010-01-04 08:10:53 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-01-04 22:06:18 -0800 |
commit | a650138ebf96dda08157e94481fe1b5943602ab0 (patch) | |
tree | f698f95ac3a75a4c29994b890c6c07b7f1f5e616 /bin | |
parent | 2b3d9e4ad077393ea2af0f4d45d4c00c00071dcd (diff) | |
download | node-new-a650138ebf96dda08157e94481fe1b5943602ab0.tar.gz |
Moved help msg to node-repl
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/node-repl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/node-repl b/bin/node-repl index b4c60b7428..82eb1bca12 100755 --- a/bin/node-repl +++ b/bin/node-repl @@ -5,6 +5,7 @@ puts("Welcome to the Node.js REPL."); 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."); +puts("Type '.help' for options."); require('repl').start(); |