mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-23 04:12:13 +00:00
8 lines
161 B
Fortran
8 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
|