node/bin/node-repl

9 lines
193 B
Plaintext
Raw Normal View History

2009-09-12 02:32:24 +08:00
#!/usr/bin/env node
console.log("Type '.help' for options.");
console.log("(The REPL can also be started by typing 'node' without arguments)");
2009-09-12 02:32:24 +08:00
require('repl').start();
2009-09-12 02:32:24 +08:00
// vim:ft=javascript