aboutsummaryrefslogtreecommitdiff
path: root/hello_complex/apps/say_hello/say_hello.f90
blob: cc648f214e2a9f3eef41fbb3a7684389ec074071 (plain)
1
2
3
4
5
6
7
program say_hello
    use greet_m, only: make_greeting

    implicit none

    print *, make_greeting("World")
end program say_hello