blob: 3c9b9bf7ae00b9ab6d30a1a17790d86ac6246f1f [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
WScript.Echo("Basic string concatenation, II.");
function f(x,y)
{
return x + "." + y;
}
var str = "-";
for(var i = 0; i < 10; ++i)
{
str = f(i,f(str, i));
}
WScript.Echo(str);