Skip to content

Instantly share code, notes, and snippets.

@datrine
Created September 22, 2019 07:53
Show Gist options
  • Select an option

  • Save datrine/2a1b1d76538fc61a0e3fa1bd9a2c0800 to your computer and use it in GitHub Desktop.

Select an option

Save datrine/2a1b1d76538fc61a0e3fa1bd9a2c0800 to your computer and use it in GitHub Desktop.
((a,cb)=>{
++a;
cb(a)
})(1,(b)=>{
b*=b;
((c,cb)=>{
cb(c)
})(b,(d)=>{
++d;
((e,cb)=>{
cb(e)
})(d,(f)=>{
console.log(f)
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment