2024-04-14 22:45:38 +02:00

13 lines
120 B
Fortran

program main
implicit none
interface
subroutine func() bind(C)
end subroutine
end interface
call func()
end program