contained.f90
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· F90 代码 · 共 17 行
F90
17 行
program contained implicit none integer i i = 0; call testproc (40) if (i .ne. 42) call abortcontains subroutine testproc (p) implicit none integer p if (p .ne. 40) call abort i = p + 2 end subroutineend program
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?