Loading

MINREV

platform

The MINREV function consumes a string representing a revision on the stack and puts back a boolean indicating if the revision of the current Warp 10™ platform is newer or equal.

MINREV is available since version 1.2.23.

Signatures

Examples

// Check that the revision is at least a 1.2.21 '1.2.21' MINREV // Check that the revision is at least a 1.2.x '1.2' MINREV // Check that the revision is at least a 2.x '2' MINREV

Examples

// Check that the revision is at least a 1.2.21 A = MINREV('1.2.21') // Check that the revision is at least a 1.2.x B = MINREV('1.2') // Check that the revision is at least a 2.x C = MINREV('2') return A, B, C