├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── example ├── version_f_ex1.f90 └── version_f_ex2.f90 ├── fpm.toml ├── src └── version_f.f90 └── test └── version_f_test.f90 /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/README.md -------------------------------------------------------------------------------- /example/version_f_ex1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/example/version_f_ex1.f90 -------------------------------------------------------------------------------- /example/version_f_ex2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/example/version_f_ex2.f90 -------------------------------------------------------------------------------- /fpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/fpm.toml -------------------------------------------------------------------------------- /src/version_f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/src/version_f.f90 -------------------------------------------------------------------------------- /test/version_f_test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhqdao/version-f/HEAD/test/version_f_test.f90 --------------------------------------------------------------------------------