aboutsummaryrefslogtreecommitdiff
path: root/example_packages/hello_complex/apps/say_goodbye/say_goodbye.f90
blob: 6966e790f62f26dbced1609553f4a5ea1e965749 (plain)
1
2
3
4
5
6
7
program say_goodbye
    use farewell_m, only: make_farewell

    implicit none

    print *, make_farewell("World")
end program say_goodbye