mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 21:58:50 -05:00
14 lines
136 B
Fortran
14 lines
136 B
Fortran
module m4
|
|
|
|
use m3, only : fourpi
|
|
|
|
implicit none
|
|
|
|
contains
|
|
|
|
pure real function halfpi()
|
|
halfpi = fourpi() / 8.0
|
|
end function
|
|
|
|
end module
|