8 lines
145 B
Text
8 lines
145 B
Text
|
export {
|
||
|
fn: func(...args) {
|
||
|
text := import("text")
|
||
|
args = append(args, "cinco")
|
||
|
|
||
|
return text.join(args, " ")
|
||
|
}
|
||
|
}
|