loop-size: make integer! 4 ** 3; example of bad characters == 64 >> divide-text: func [] [ loop loop-size [ print make char! (7 * 6) ] ] >> divide-text print "^/" You have print in the divide-text func, so will print "*" on a new line. Replace with prin to print 64 "*" then newline.
