7 lines
166 B
FortranFixed
7 lines
166 B
FortranFixed
|
|
function ffun(x, y)
|
||
|
|
implicit none
|
||
|
|
!DEC$ ATTRIBUTES DLLEXPORT, STDCALL, REFERENCE :: FFUN
|
||
|
|
double precision :: x, y, ffun
|
||
|
|
ffun = x + y * y
|
||
|
|
end function
|