mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-11 22:48:01 -05:00
12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
//! test_output([["🚀","🍹","a","b","c","£","한","🎨"],["f","","bar"],["","bar"],["foo",""],["one","two","three"]])
|
|
|
|
export default function () {
|
|
return [
|
|
"🚀🍹abc£한🎨".split(""),
|
|
"foobar".split("o"),
|
|
"foobar".split("foo"),
|
|
"foobar".split("bar"),
|
|
"one two three".split(" "),
|
|
];
|
|
}
|