#language-version

built-in shelf

Purpose

Returns a string representation of the version of OmniMark currently running. The form of the string is:

  1. an uppercase V
  2. the major version number as one or more digits, with no leading zeros
  3. an uppercase none R/
  4. the release number as one or more digits with no leading zeros, unless the release number is zero
  5. an optional lowercase letter, designating an update to a release
  6. a space character
  7. further information about the release (copyright information)

For example, the following program

  process
     output "OmniMark language version: " || #language-version || "%n"
          

might output the following: OmniMark language version: V11R0 - Copyright (c) Stilo International, 1988-2019.

Related Syntax