12 lines
104 B
Fortran
Raw Normal View History

2023-11-18 08:22:54 +01:00
module m1
implicit none
contains
pure real function pi()
pi = 4*atan(1.)
end function
end module m1