📄 function_module_1.f90
字号:
! This can fail because BB is not resolved correctly.module M1INTEGER pCONTAINSsubroutine AA () implicit NONE p = BB () CONTAINS subroutine AA_1 () implicit NONE integer :: i i = BB () end subroutine function BB() integer :: BB BB = 1 end functionend subroutine function BB() implicit NONE integer :: BB BB = 2end functionend moduleprogram P1 USE M1 implicit none p = 0 call AA () if (p /= 1) call abortend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -