Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=dp), | intent(in) | :: | b |
pure function funPlus1(b) result(ret)
! think of a better way to include that -> wasted time
real(dp), intent(in) :: b
real(dp) :: ret
unused_var(b)
ret = 1.0_dp
end function funPlus1