getsymbols02-b.f90 201 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 module mm2b use mm2a implicit none private public :: callget5 contains function callget5() result(ret) implicit none INTEGER :: ret ret = get5() end function callget5 end module mm2b