2023-09-21 23:15:15 +02:00

12 lines
99 B
Fortran

module lib
implicit none
contains
pure real function func()
func = 1.0
end function
end module