diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 09:21:30 -0600 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 11:51:42 -0600 |
commit | 5adfb0741c5c0acccbc046a48501ab28a290c1bd (patch) | |
tree | 9fa47a2b22956240c5aed04f6d48ad93b2b94b87 | |
parent | a807b644304ab18fc2943ad0e237b362c22e7e91 (diff) | |
download | fpm-5adfb0741c5c0acccbc046a48501ab28a290c1bd.tar.gz fpm-5adfb0741c5c0acccbc046a48501ab28a290c1bd.zip |
Print initial text
-rw-r--r-- | fpm/src/fpm.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpm/src/fpm.f90 b/fpm/src/fpm.f90 index d540319..0d1e6bf 100644 --- a/fpm/src/fpm.f90 +++ b/fpm/src/fpm.f90 @@ -5,6 +5,6 @@ module fpm public :: say_hello contains subroutine say_hello - print *, "Hello, fpm!" + print *, "Fortran Package Manager (fpm)" end subroutine say_hello end module fpm |