mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-11 22:48:01 -05:00
13 lines
223 B
TypeScript
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;
|
|
}
|