Files
ValueScript/inputs/passing/stringMethods/fromCodePoint.ts
Andrew Morris 253b06141c fromCodePoint
2023-03-13 14:25:55 +11:00

6 lines
110 B
TypeScript

// test_output! "Hi 👋"
export default function () {
return String.fromCodePoint(72, 105, 32, 128075);
}