tor-browser

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

bug720169.js (101B)


      1 function foo() {
      2  var x = 0;
      3  var y = 0;
      4  while (x++ < 100)
      5    y++;
      6  assertEq(y, 100);
      7 }
      8 foo();