mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-01-09 18:31:23 +00:00
9 lines
161 B
Fortran
9 lines
161 B
Fortran
|
module my_module
|
||
|
interface my_interface
|
||
|
module procedure my_sub
|
||
|
end interface
|
||
|
contains
|
||
|
subroutine my_sub
|
||
|
end subroutine my_sub
|
||
|
end module my_module
|