mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 10:50:16 -06:00
12 lines
104 B
Fortran
12 lines
104 B
Fortran
module m1
|
|
|
|
implicit none
|
|
|
|
contains
|
|
|
|
pure real function pi()
|
|
pi = 4*atan(1.)
|
|
end function
|
|
|
|
end module m1
|