marktemp2.js 657 B

1234567891011121314151617181920212223242526272829303132
  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. (function ()
  6. {
  7. var s2 = -1662342659;
  8. var s4 = 0;
  9. var s5 = 0;
  10. var s6 = 0;
  11. var s7 = 0;
  12. for (var b = 0; b < 2; b++)
  13. {
  14. s5 = s2;
  15. s6 = s2 + 1
  16. s7 = -s5;
  17. s2 = s6;
  18. s4 = s7;
  19. }
  20. WScript.Echo("s2 = " + s2);
  21. WScript.Echo("s4 = " + s4);
  22. }
  23. )();