Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
numpy / f2py / tests / src / crackfortran / gh23598Warn.f90
Size: Mime:
module test_bug
    implicit none
    private
    public :: intproduct

contains
    integer function intproduct(a, b) result(res)
    integer, intent(in) :: a, b
    res = a*b
    end function
end module