blob: 4df3e078aee0c5ea75741a314ff8126b555d0237 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function test()
{
var s = "1";
for (var i = 0; i < 2; i++)
{
if (i == 0)
{
s = "1000000" + s + "1";
}
else
{
s -= 1;
}
}
WScript.Echo(s);
}
test();
test();