meson/test cases/fortran/14 fortran links c/f_call_c.f90

12 lines
129 B
Fortran
Raw Normal View History

2021-09-13 08:51:32 +08:00
program main
implicit none
interface
subroutine hello() bind (c)
end subroutine hello
end interface
call hello()
end program