test100.js 485 B

123456789101112
  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. var c = 1;
  7. var h;
  8. h <<= 1;
  9. var a = (1 / (0 - h));
  10. WScript.Echo("a = " + a);
  11. })();