From d89214ba52c968a950dc3118f54b8547350536d9 Mon Sep 17 00:00:00 2001 From: Brad Richardson Date: Sat, 23 May 2020 20:43:04 -0700 Subject: Add path dependencies and a test to make sure it works --- hello_fpm/app/main.f90 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello_fpm/app/main.f90 (limited to 'hello_fpm/app') diff --git a/hello_fpm/app/main.f90 b/hello_fpm/app/main.f90 new file mode 100644 index 0000000..5df6d64 --- /dev/null +++ b/hello_fpm/app/main.f90 @@ -0,0 +1,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 -- cgit v1.2.3