Comment on Mug: A New JavaScript compiler for the JVMparentComments−Autre15yJust tried the following: for (var i = 0; i < 10; i += 1) eval("function function_" + i + "() { print('i am ' + i); }"); for (i = 0; i < 10; i += 1) this['function_' + i](); but it seems like eval is not supported yet - i guess for good reasons.
Comments
Just tried the following:
but it seems like eval is not supported yet - i guess for good reasons.