CompoundString.js 660 B

1234567891011
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. WScript.LoadScriptFile("CompoundStringUtilities.js", "self");
  6. CompoundString.createTestStrings(); // call twice so that it is jitted the second time
  7. var strings = CompoundString.createTestStrings();
  8. for(var i = 0; i < strings.length; ++i)
  9. WScript.Echo(i + ": " + strings[i]);