1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
---
title: version
---
# The `stdlib_version` module
[TOC]
## Introduction
The `stdlib_version` module contains the version of the standard library.
The version information can be used as a compile time constant or retrieved from a getter function at runtime.
In case the standard library is dynamically linked, the version number retrieved from the getter might mismatch the compile time constants provided from the version built against.
Therefore, it is recommended to retrieve the version information always at runtime.
## Constants provided by `stdlib_version`
### `stdlib_version_string`
String constant representing the version number.
### `stdlib_version_compact`
Compact representation of the version string following the scheme:
major * 10000 + minor * 100 + patch.
### `get_stdlib_version`
#### Status
Experimental
#### Description
Getter subroutine to retrieve version information
#### Syntax
`call ` [[stdlib_version(module):get_stdlib_version(subroutine)]] ` ([major], [minor], [patch], [string])`
#### Class
Pure subroutine.
#### Argument
`major`: shall be an intrinsic integer type. It is an optional, `intent(out)` argument.
`minor`: shall be an intrinsic integer type. It is an optional, `intent(out)` argument.
`patch`: shall be an intrinsic integer type. It is an optional, `intent(out)` argument.
`string`: shall be a deferred length character type. It is an optional, `intent(out)` argument.
#### Example
```fortran
{!example/version/example_version.f90!}
```
|