RosettaCodeData/Task/Collections/Fortran/collections-2.f

8 lines
273 B
FortranFixed
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
TYPE(MIXED) !Name the "type".
INTEGER COUNTER !Its content is listed.
REAL WEIGHT,DEPTH
CHARACTER*28 MARKNAME
COMPLEX PATH(6) !The mixed collection includes an array.
END TYPE MIXED
TYPE(MIXED) TEMP,A(6) !Declare some items of that type.