mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-23 12:22:40 +00:00
9 lines
155 B
Fortran
9 lines
155 B
Fortran
|
module mymodule
|
||
|
interface myinterface
|
||
|
module procedure mysub
|
||
|
end interface
|
||
|
contains
|
||
|
subroutine mysub
|
||
|
end subroutine mysub
|
||
|
end module mymodule
|