RosettaCodeData/Task/Reverse-a-string/PowerBASIC/reverse-a-string.powerbasic
2019-09-12 10:33:56 -07:00

6 lines
103 B
Text

#DIM ALL
#COMPILER PBCC 6
FUNCTION PBMAIN () AS LONG
CON.PRINT STRREVERSE$("PowerBASIC")
END FUNCTION