blob: a6c5e764e9036cc1f270324123c6b81e9122eca8 [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.
//-------------------------------------------------------------------------------------------------------
const a = 5;
for (var x = 0; x < 10; x ++) {
const a = 666;
WScript.Echo(a);
}
const b = 10;
WScript.Echo(a);
WScript.Echo(b);