Writing User Modules › How to Write Procedure Modules › 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