FORTRAN 77 Language Reference

END STRUCTURE

The END STRUCTURE @ statement terminates the STRUCTURE statement and requires the following syntax:

END STRUCTURE

Description

See "STRUCTURE" for more information.

Example


       STRUCTURE /PROD/ 
              INTEGER*4					ID 
              CHARACTER*16							NAME 
              CHARACTER*8							MODEL 
              REAL*4					COST 
              REAL*4					PRICE 
       END STRUCTURE