blob: 5df6d64636704e72f651357bf8fd0e2b25185bc4 (
plain)
1
2
3
4
5
6
7
8
9
|
program hello_fpm
use farewell_m, only: make_farewell
use greet_m, only: make_greeting
implicit none
print *, make_greeting("fpm")
print *, make_farewell("fpm")
end program hello_fpm
|