⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 module_interface.f90

📁 linux下编程用 编译软件
💻 F90
字号:
! 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -