6 lines
213 B
Fortran
6 lines
213 B
Fortran
SUBROUTINE FRED(X,*,*) !With placeholders for unusual parameters.
|
|
...
|
|
RETURN !Normal return from FRED.
|
|
...
|
|
RETURN 2 !Return to the second label.
|
|
END
|