mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 13:48:33 -05:00
14 lines
122 B
Fortran
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
|