FORTRAN 77 Language Reference

VIRTUAL

The VIRTUAL @ statement is treated the same as the DIMENSION statement.

VIRTUAL a(d) [, a(d)] ...

Parameter 

Description 

a

Name of an array  

a(d)

Specifies the dimension of the array. It is a list of 1 to 7 declarators separated by commas  

Description

The VIRTUAL statement has the same form and effect as the DIMENSION statement. It is included for compatibility with older versions of FORTRAN.

Example


       VIRTUAL M(4,4), V(1000) 
       ... 
       END