Interface block
Applies to: fortran
A Fortran interface block describes procedure signatures so the compiler can check calls.
interface
subroutine step(x)
real :: x
end subroutine
end interface
See also: module, function-fortran
Applies to: fortran
A Fortran interface block describes procedure signatures so the compiler can check calls.
interface
subroutine step(x)
real :: x
end subroutine
end interface
See also: module, function-fortran