14 lines
122 B
Fortran
Raw Normal View History

2023-09-21 23:15:15 +02:00
module m2
use m1, only : pi
implicit none
contains
pure real function twopi()
twopi = 2*pi()
end function
end module