And what would be even better is if you could add a Label to it to make it easy to find.
Code:
DATA @0
BlaBla  DATA  "Bla bla bla",0
MoreBla DATA  "More bla bla",0
Then you could ...
Code:
Idx = BlaBla : GOSUB PrintStr
Idx = MoreBla : GOSUB PrintStr

PrintStr:
    READ Idx, Char
    IF Char != 0 THEN
        LCDOUT Char
        Idx = Idx + 1
        GOTO PrintStr
    ENDIF
RETURN
Your wish is granted.
And the update has been magically downloaded to everyone's PicBasic Pro installation.
<br>