mystery_proc.f90

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· F90 代码 · 共 24 行

F90
24
字号
! Program to test dummy proceduressubroutine bar()end subroutinesubroutine foo2(p)  external p  call p()end subroutinesubroutine foo(p)  external p  ! We never actually discover if this is a function or a subroutine  call foo2(p)end subroutineprogram intrinsic_minmax   implicit none   external bar   call foo(bar)end program

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?