numpy/f2py/tests/src/crackfortran/pubprivmod.f90

module foo
  public
  integer, private :: a
  integer :: b
contains
  subroutine setA(v)
    integer, intent(in) :: v
    a = v
  end subroutine setA
end module foo
Metadata
View Raw File