diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-05-20 11:14:31 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-05-20 11:14:31 -0400 |
commit | a13d6f007be2b43704b6237cacf668452172e591 (patch) | |
tree | f0d59928a8bb6ad38dae2dce23b7e9baa82b65a1 /common | |
parent | 09e05b225bbea43d77ee1edfb896e5cdef43c145 (diff) | |
download | levitating-a13d6f007be2b43704b6237cacf668452172e591.tar.gz levitating-a13d6f007be2b43704b6237cacf668452172e591.zip |
Added a build date function. Implemented about and home templates for gemini interface.
Diffstat (limited to 'common')
-rw-r--r-- | common/utilities.F90 | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/common/utilities.F90 b/common/utilities.F90 index b0afc8f..d96ec49 100644 --- a/common/utilities.F90 +++ b/common/utilities.F90 @@ -578,4 +578,13 @@ contains end subroutine echo_file_stdout -end module utilities
\ No newline at end of file + function build_date() + implicit none + + character(64)::build_date + + build_date = __DATE__ + + end function build_date + +end module utilities |