tor-browser

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

input.js (196B)


      1 export default function root() {
      2  var one = 1;
      3  let two = 2;
      4  const three = 3;
      5 
      6  one;
      7  two;
      8 
      9  {
     10    let two = 4;
     11    const three = 5;
     12 
     13    console.log("pause here", one, two, three);
     14  }
     15 }