Here, the "main" program is function WinMain(), and it calls a simple function that "lives" in another *.f90 file (compiled w/ the project. That function is this:
integer*4 function fRun(Nint)
implicit none
integer :: Nint
fRun = Nint + 10
end
An Interface is presented in the...