mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 02:39:48 -06:00
14 lines
119 B
Fortran
14 lines
119 B
Fortran
module lib
|
|
|
|
use m1, only : pi
|
|
|
|
implicit none
|
|
|
|
contains
|
|
|
|
pure real function func()
|
|
func = pi()
|
|
end function
|
|
|
|
end module
|