Simplify REPL

This commit is contained in:
Ryan Dahl 2010-09-16 20:50:56 -07:00
parent bbbcd1fee0
commit 42eb5a6898
2 changed files with 2 additions and 4 deletions

View File

@ -48,7 +48,7 @@ function REPLServer(prompt, stream) {
self.buffered_cmd = '';
self.stream = stream || process.openStdin();
self.prompt = prompt || "node> ";
self.prompt = prompt || "> ";
var rli = self.rli = rl.createInterface(self.stream, function (text) {
return self.complete(text);

View File

@ -741,9 +741,7 @@ if (process.argv[1]) {
});
} else {
// No arguments, run the repl
var repl = requireNative('repl');
console.log("Type '.help' for options.");
repl.start();
requireNative('repl').start();
}
// All our arguments are loaded. We've evaluated all of the scripts. We