2023-09-21 23:15:15 +02:00

14 lines
122 B
Fortran

module m2
use m1, only : pi
implicit none
contains
pure real function twopi()
twopi = 2*pi()
end function
end module