Skip to content

Instantly share code, notes, and snippets.

@RubenVerborgh
Created August 16, 2016 06:09
Show Gist options
  • Save RubenVerborgh/63309e4cc6e611c5d636a1340f15682e to your computer and use it in GitHub Desktop.
Save RubenVerborgh/63309e4cc6e611c5d636a1340f15682e to your computer and use it in GitHub Desktop.
immediate = require('./lib/index');
var i = 2e7;
immediate(function next(i) {
if (i > 0)
immediate(next, i - 1);
}, i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment