How to repeat a string adding a white space in between ? $str(ho, 3) will return hohoho and I want ho ho ho
$str(ho, 3)
hohoho
ho ho ho
Use the $chr identifier.
$chr
$str(ho $chr(32), 3)