UNPKG

dojo-util

Version:

Dojo utilities including build system for optimizing JavaScript application performance, and DOH testing tool

22 lines (16 loc) 326 B
result = ""; (function() { CallMe = function(callback) { callback(); }; var say_hello_twice = function() { say_hello(); CallMe(function(){ say_hello(); }); }; var say_hello = function() { result += 'hello world'; }; say_hello_twice(); })();