Loading...
Searching...
No Matches
benchmark_version

Definition

Represents the version number of the library.

Examples

The following example uses the version variable to print the version number of the current library. At compile time, the version number is stored in the module variable version .

use benchmark_version
character(:), allocatable :: v
v = version
write(*,*) 'The current version number is ' // v
!The example display the following output
! 'The current version number is 1.0.0'

Remarks

The version number follows the semver convention with MAJOR.MINOR.PATCH.

Variables

character(*), parameter version = '1.0.0'
 The current version number, using semver notation.