From 602d1861a1cb5ff426aa17c3d1c2ddb8423b7ac1 Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 8 Mar 2010 15:07:26 -0800 Subject: [PATCH] Remove process.mixin from repl --- bin/node-repl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/node-repl b/bin/node-repl index 82eb1bc..9dfdd0a 100755 --- a/bin/node-repl +++ b/bin/node-repl @@ -1,6 +1,7 @@ #!/usr/bin/env node -process.mixin(require('sys')); +puts = require("sys").puts; + puts("Welcome to the Node.js REPL."); puts("Enter ECMAScript at the prompt."); puts("Tip 1: Use 'rlwrap node-repl' for a better interface"); -- 2.7.4