e.js 759 B

123456789101112131415161718192021222324252627
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. var x = 10;
  6. function f() {
  7. const x = 5;
  8. {
  9. const x = "abacaba";
  10. WScript.Echo(x);
  11. {
  12. const x = 111111;
  13. WScript.Echo(x);
  14. }
  15. WScript.Echo(x);
  16. {
  17. const x = 222222;
  18. WScript.Echo(x);
  19. }
  20. WScript.Echo(x);
  21. }
  22. WScript.Echo(x);
  23. };
  24. f();
  25. WScript.Echo(x);