Skip to content

Instantly share code, notes, and snippets.

@Gozala
Created April 11, 2010 14:42
Show Gist options
  • Save Gozala/362787 to your computer and use it in GitHub Desktop.
Save Gozala/362787 to your computer and use it in GitHub Desktop.
bespin gist: gist
var timer = require("timer");
exports.main = function main(options, callbacks) {
(function ping() {
timer.setTimeout(function() {
ping();
console.log("repl4pack is listening...");
}, 10);
})()
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment