How to print without newline in Swift

1 Answer

0 votes
print("swift", terminator:" ")
print("java", terminator:" ")
print("c++", terminator:" ")




/*
run:

swift java c++ 

*/

 



answered Sep 19, 2020 by avibootz
...