blob: 885e47b91c8958aed408ab0f3eacf45578d882c8 [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.
//-------------------------------------------------------------------------------------------------------
var f = false;
var t = true;
if(!f) WScript.Echo("test 1");
if(!!!f) WScript.Echo("test 2");
if(t) WScript.Echo("test 3");
if(!!t) WScript.Echo("test 4");