The default terminator for print
is the newline "
".
You can specify that you do not want any terminator like this:
print("hello", terminator: "")
And since you're in a Playground, open the "Debug Area" to see the print result in the console: the side panel is a preview and doesn't work the same way.
For example, this sequence:
print("hello")
print("hello", terminator: "")
print("hello")
Gives:
hello
hellohello
in the debug area, but will show:
"hello
"
"hello"
"hello
"
in the preview panel.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…