| 12345678910111213141516171819202122232425 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- var x = 6;
- var giraffe = 8;
- var zebra = x + giraffe;
- function f(t) {
- return t + t;
- }
- var cat = f(zebra);
- rat = cat * 2;
- while (rat > 4) {
- rat = rat - 3;
- cat = cat + 4;
- }
- var dragon = rat / 2;
- WScript.Echo(x)
- WScript.Echo(giraffe)
- WScript.Echo(zebra)
- WScript.Echo(cat)
- WScript.Echo(rat)
- WScript.Echo(dragon);
|