mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 03:29:18 -05:00
14 lines
130 B
Fortran
14 lines
130 B
Fortran
module m3
|
|
|
|
use m2, only : twopi
|
|
|
|
implicit none
|
|
|
|
contains
|
|
|
|
pure real function fourpi()
|
|
fourpi = 2*twopi()
|
|
end function
|
|
|
|
end module
|