next up previous contents
Next: Modules Hosting Procedures Up: More on Procedures Previous: Pure Functions   Contents

Internal Procedures

In F90 program units contain declarations, executable statements, but may also contain internal procedures. A program unit that contains internal procedures is called the host. Internal procedures

PROGRAM
  CALL SUB1()
CONTAINS
  SUBROUTINE ()
 
  END SUBROUTINE
END PROGRAM 



Adrian Sandu 2001-08-26