14 lines
136 B
Fortran
Raw Normal View History

2023-09-21 23:15:15 +02:00
module m4
use m3, only : fourpi
implicit none
contains
pure real function halfpi()
halfpi = fourpi() / 8.0
end function
end module