Continuation
https://github.com/eu81273/jsfiddle-console
HTML
<script src="https://rawgit.com/eu81273/jsfiddle-console/master/console.js"></script>
JavaScript
const toCont=v=>callback=>callback(v);
var bind = (cont1, func)=>
(c=>cont1(contResult=>func(contResult)(c)));
toCont(x=>x*x)
(y=>toCont(y(4))
(t=>console.log(t)));
bind(toCont(x=>x*x) , y=>toCont(y(4)))(t=>console.log(t))