You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
201 B
13 lines
201 B
4 months ago
|
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
|