aboutsummaryrefslogtreecommitdiff
path: root/example_packages/hello_complex/apps/say_hello/say_Hello.f90
blob: cf4a7421d327827e1951ff97c61fb769a321b022 (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