tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug716504.js (173B)


      1 function f(x, from, to) {
      2    var y = 0;
      3    for (var i=from; i<to; i++) {
      4        y = i * x;
      5    }
      6    return y;
      7 }
      8 
      9 assertEq(f(0, 0, 200), 0);
     10 assertEq(f(0, -10, -5), -0);