Files
node-v0.x-archive/bin/node-repl
2010-06-07 16:15:41 -07:00

11 lines
212 B
JavaScript
Executable File

#!/usr/bin/env node
var puts = require("sys").puts;
puts("Type '.help' for options.");
puts("(The REPL can also be started by typing 'node' without arguments)");
require('repl').start();
// vim:ft=javascript