five.tengo 143 B

1234567
  1. export {
  2. fn: func(...args) {
  3. text := import("text")
  4. args = append(args, "five")
  5. return text.join(args, " ")
  6. }
  7. }