diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-05-28 13:34:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-28 13:34:58 -0700 |
commit | c2d5c656affd4e0a7c97e8ca469fb6cfba00dc4d (patch) | |
tree | 7e4f56f4001ab379d631874b5fe602505a1e09c5 /hello_fpm/app/main.f90 | |
parent | fd2bb76c81559e3c73efa1332d42a84008688bf1 (diff) | |
parent | 3613167a52e8c4cd06480e493a2c5e42d134f837 (diff) | |
download | fpm-c2d5c656affd4e0a7c97e8ca469fb6cfba00dc4d.tar.gz fpm-c2d5c656affd4e0a7c97e8ca469fb6cfba00dc4d.zip |
Merge pull request #82 from everythingfunctional/EnableDependencies
Enable dependencies
Diffstat (limited to 'hello_fpm/app/main.f90')
-rw-r--r-- | hello_fpm/app/main.f90 | 9 |
1 files changed, 9 insertions, 0 deletions
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 |