By something like this: import strutils var x = "aa" y = "bb" z = "cc" stdout.write [x,y,z].join " " Run
- python: print(x, end=" ") BLeAmz
- python: print(x, end=" ") masiarek2
- python: print(x, end=" ") enthus1ast
- python: print(x, end=" ") PMunch
By something like this: import strutils var x = "aa" y = "bb" z = "cc" stdout.write [x,y,z].join " " Run