RosettaCodeData/Task/Flow-control-structures/Fortran/flow-control-structures-3.f

7 lines
213 B
FortranFixed
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
SUBROUTINE FRED(X,*,*) !With placeholders for unusual parameters.
...
RETURN !Normal return from FRED.
...
RETURN 2 !Return to the second label.
END