tor-browser

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

nestedContinue.js (135B)


      1 x = 10;
      2 outer:
      3 while (x < 10) {
      4  while (x < 10) {
      5    if (x < 10)
      6      continue outer;
      7    while (x < 10) {
      8      y = 0;
      9    }
     10  }
     11 }