File: intent.f90

package info (click to toggle)
fortran-language-server 3.2.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,268 kB
  • sloc: python: 9,688; f90: 1,195; fortran: 30; makefile: 28; ansic: 20
file content (8 lines) | stat: -rw-r--r-- 272 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
subroutine intent(arg1, arg2, arg3, arg4, arg5)
    implicit none
    integer(4), intent(in) :: arg1
    integer, intent(out) :: arg2
    integer(4), intent(inout) :: arg3
    integer(4), intent(in out) :: arg4
    real, optional, intent(in) :: arg5
end subroutine intent