This file contains hidden or 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 | |
interface | |
subroutine called(arg) | |
integer :: arg | |
end subroutine called | |
end interface | |
call called(arg) | |
end subroutine caller |
This file contains hidden or 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 |
NewerOlder