RIGHT
STRING, LENGTH
This function will return the right most string based on a length.
Example
PRINT RIGHT("kytschBASIC", 5)
LINE BREAK
DEF string$=RIGHT("kytschBASIC", 5)
PRINT string$
Output
BASIC
BASIC
BASIC
Put down that phone!
Please view me on real computer.
RIGHT
STRING, LENGTH
This function will return the right most string based on a length.
PRINT RIGHT("kytschBASIC", 5)
LINE BREAK
DEF string$=RIGHT("kytschBASIC", 5)
PRINT string$