blob: 6690d74ca3dd7d71bc42e5de3b5a06c8c771914b [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.
//-------------------------------------------------------------------------------------------------------
// check constants, just echo
WScript.Echo("Math constants:")
WScript.Echo(Math.E);
WScript.Echo(Math.PI);
WScript.Echo(Math.LN10);
WScript.Echo(Math.LN2);
WScript.Echo(Math.LOG2E);
WScript.Echo(Math.LOG10E);
WScript.Echo(Math.SQRT1_2);
WScript.Echo(Math.SQRT2);