| 123456789101112131415 |
- //-------------------------------------------------------------------------------------------------------
- // 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);
|