//------------------------------------------------------------------------------------------------------- // Copyright (C) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. //------------------------------------------------------------------------------------------------------- function write(v) { WScript.Echo(v + ""); } for (var i=0;i<100; i += 2) { Array.prototype[i] = (i*i) + 1000; } function Test() { var args = arguments; var a = new Array(); while (args.length > 1) { var s = Array.prototype.shift.call(args); var e = Array.prototype.shift.call(args); for (var i=s;i