📄 gen_interf.f90
字号:
! Program to test generic interfaces.program gen_interf implicit none interface gen function ifn (a) integer :: a, ifn end function end interface interface gsub subroutine igsub (a) integer a end subroutine end interface integer i call gsub (i) i = gen(i)end program
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -