Skip to content

Instantly share code, notes, and snippets.

@guziy
Created August 23, 2011 22:21
Show Gist options
  • Save guziy/1166765 to your computer and use it in GitHub Desktop.
Save guziy/1166765 to your computer and use it in GitHub Desktop.
Function as parameter in f77
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