control-freak-ide/server/nodejs/util/shrinksafe/tests/5303.js
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

22 lines
326 B
JavaScript

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();
})();