blob: d1640f8871b46e01736b18aaa74bbadbd302a3d5 [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.
//-------------------------------------------------------------------------------------------------------
telemetryLog("Start Global Code", true);
function foo()
{
telemetryLog("Start Foo", true);
WScript.Echo("Hello World - CallBack");
telemetryLog("End Foo", true);
}
WScript.SetTimeout(foo, 250);
WScript.Echo("Hello World - Global");
telemetryLog("End Global Code", true);