mainsub.f90

来自「用于进行gcc测试」· F90 代码 · 共 18 行

F90
18
字号
! Program to test compilation of subroutines following the main programprogram mainsub   implicit none   integer i   external test   i = 0   call test (i)   if (i .ne. 42) call abortend programsubroutine test (p)   implicit none   integer p   p = 42end subroutine

⌨️ 快捷键说明

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