module_interface.f90

来自「linux下编程用 编译软件」· F90 代码 · 共 40 行

F90
40
字号
! We were incorrectly mangling procedures in interfaces in modulesmodule module_interface    interface        subroutine foo ()        end subroutine foo    end interfacecontainssubroutine csend subroutinesubroutine cproc  interface      subroutine bar ()      end subroutine  end interface  call bar ()  call foo ()  call cs ()end subroutineend modulesubroutine foo ()end subroutinesubroutine bar ()end subroutineprogram module_interface_proc  use module_interface  interface      subroutine bar ()      end subroutine  end interface  call cproc ()  call foo ()  call bar ()end program

⌨️ 快捷键说明

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