Login
7 branches 0 tags
Ben (X13/Arch) Initial structs for Nujel images bd88c68 2 years ago 1086 Commits
nujel / benchmark / for / javascript.js
try{
    var consoleLog = print ? print : console.log;
}catch(e){
    var consoleLog = console.log;
} // mujs workaround

function testRun(){
    var ret = 0;
    for(var i=0;i<10000000;i++){
        ret += i;
    }
    consoleLog("The result is: " + ret);
}
testRun();