Created
August 23, 2011 22:21
-
-
Save guziy/1166765 to your computer and use it in GitHub Desktop.
Function as parameter in f77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
subroutine caller(arg, called) | |
integer :: arg | |
external :: called | |
call called(arg) | |
end subroutine caller |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment