getsymbols02-a.f90 159 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 module mm2a implicit none private public :: get5 contains function get5() result(ret) integer :: ret ret = 5 end function get5 end module mm2a