?? ex1202f.f90
字號:
module cprog
interface
subroutine SUBA(a)
!DEC$ ATTRIBUTES C, ALIAS:'_sub1' :: SUBA
integer :: a
!DEC$ ATTRIBUTES REFERENCE :: a
end subroutine
subroutine SUBB(a)
!DEC$ ATTRIBUTES C, ALIAS:'_sub2' :: SUBB
integer :: a
!DEC$ ATTRIBUTES VALUE :: a
end subroutine
end interface
end module cprog
program main
use cprog
implicit none
integer :: a=10
call SUBA(a)
call SUBB(a)
stop
end program
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -