blob: 546c1c4adbfb7a1a49347f520182159f09548d97 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function test(arg) {
var x = String.fromCharCode(arg).charCodeAt();
WScript.Echo(x);
}
test(0);
var charCode = 0xFFFC;
for(var i = 0; i < 10; i++){
test(charCode);
charCode++;
}