blob: 1ba7c2c0b309e1aa20f3b3dea3f09af83546e861 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function func(f)
{
var a = 1;
var b = 2;
if (f() === 1)
{
WScript.Echo(a);
}
else
{
WScript.Echo(b);
}
}
function one() { return 1; }
function zero() { return 0; }
func(zero);
func(one);