aboutsummaryrefslogtreecommitdiff
path: root/example_packages/fortran_includes/src/lib.f90
blob: a27a001e2a896813047e307b4dc8779186fe6ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module test_mod
  implicit none

  include "parameters.f90"

  contains

  subroutine test_sub(a)
    real(dp), intent(in) :: a

    write(*,*) 'a: ', a
  end subroutine test_sub

end module test_mod