Cobol reverse a string
IDENTIFICATION DIVISION.
PROGRAM-ID. reverse string.
PROCEDURE DIVISION.
MOVE FUNCTION REVERSE(s) TO t
STOP RUN.
Are there any code examples left?
New code examples in category Cobol
IDENTIFICATION DIVISION.
PROGRAM-ID. reverse string.
PROCEDURE DIVISION.
MOVE FUNCTION REVERSE(s) TO t
STOP RUN.