Prints the program version to the terminal console
subroutine print_version() !! Prints the program version to the terminal console write(*,"(a)") " uEMEP: Air quality dispersion model for high resolution downscaling of EMEP MSC-W" write(*,"(a)") " " write(*,"(2a)") " Version: ", trim(model_version_str) write(*,"(a)") " Copyright (C) 2007 Free Software Foundation." write(*,"(a)") " License GNU LGPL-3.0 <https://www.gnu.org/licenses/lgpl-3.0.html>." write(*,"(a)") " This is free software: you are free to change and redistribute it." write(*,"(a)") " " write(*,"(a)") " Developed and maintained at the Norwegian Meteorological Institute." write(*,"(a)") " Contribute at: <https://github.com/metno/uEMEP>" end subroutine print_version