Builtin

sprint

sprint(args)

Returns the concatenated string of the args, separated by a space.

See print for details.

Example

Build a result using sprint and then output it separately using print
s := sprint("Hello", "world")
print(s)
Hello world