aboutsummaryrefslogtreecommitdiff
path: root/example_project/src/hello_m.f90
blob: a3416024843e653e8d4921ea45e415af97d9aaf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module hello_m
    implicit none
    private

    public :: sayHello
contains
    subroutine sayHello(name)
        character(len=*), intent(in) :: name

        print *, "Hello, " // name // "!"
    end subroutine sayHello
end module hello_m