Previous Topic: Coding a PL/I Procedure ModuleNext Topic: Helpful hints


Coding a FORTRAN procedure module

The following module adds two numbers and returns the result to the main CA Culprit program.

The procedure module

INTEGER*4 A,B,C
C=A+B
RETURN
END