new commands from other languages
PowerBASIC has INCR and DECR commands which are nice except for making the code less portable to other dialects of BASIC.
Also a heap of (reasonably) intuitive extensions like:
ASC(X$) returns first character value of X$, ASC(X$, 4) returns 4th character value of X$
CHR$(13, 10) returns CHR$(13) + CHR$(10)
Trim$(X$) removes leading and trailing spaces, Trim$(X$, ANY CHR$(13, 10, 32, 9)) removes leading and trailing CR, LF, spaces and tabs