blob: 866e6808fe054b05bdf6358997b04c1a2e55e41a [file]
//-------------------------------------------------------------------------------------------------------
// 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");