FORTRAN 77 Language Reference

Example

Example: A SAVE statement:


       SUBROUTINE FFA(N) 
       DIMENSION A(1000,1000), V(1000) 
       SAVE A 
       ... 
       RETURN 
       END