Files
ValueScript/inputs/passing/stringIteration.ts
2023-05-31 12:18:32 +10:00

13 lines
223 B
TypeScript

//! test_output(["🚀","🍹","a","b","c","£","한","🎨"])
export default function () {
const str = "🚀🍹abc£한🎨";
let outputs = [];
for (const c of str) {
outputs.push(c);
}
return outputs;
}