blob: 4fb1adb13b384de483b005f7b6c56a60d03bc188 [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.
//-------------------------------------------------------------------------------------------------------
if (true)
{
const c = 1;
WScript.Echo(c);
}
WScript.Echo((function(x) {
let y = arguments;
return y;
})(1)[0]);
let a = 'a';
(function(a) { WScript.Echo(a) })();
WScript.Echo(a);