Screen _NewImage(800, 480, 32) ' Graphics Screen 800\8 = 100 cols 480\16 = 30 rows text$ = "Here is first liner test... zzz"
row = 1: col = 1
RndRow
= Int(Rnd * (28)) + 2: RndCol
= Int(Rnd * 40) + 1: rndText$
= "Here is rnd col row test."locate2PrintString8x16 row, col, text$
locate2PrintString8x16 RndRow, RndCol, rndText$
' convert Locate Row, Col " : Print text$ to printString version ON GRAPHICS Screens not Console or Screen 0
Sub locate2PrintString8x16
(Row
, Col
, text$
)