contained_4.f90

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

F90
36
字号
! Check contained functions with the same name.module contained_4contains  subroutine foo1()    call bar()  contains    subroutine bar()    end subroutine bar  end subroutine foo1  subroutine foo2()    call bar()  contains    subroutine bar()    end subroutine bar  end subroutine foo2end module contained_4subroutine foo1()call bar()contains  subroutine bar()  end subroutine barend subroutinesubroutine foo2()  call bar()contains  subroutine bar()  end subroutine barend subroutine foo2

⌨️ 快捷键说明

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