Config.Lang | Part of Config module |
Syntax | Config.Lang (langCode : int) : int
| |||||||||||||||
Description | Config.Lang returns information about the language and the limitations of the implementation that the program is currently running. The parameter langCode determines what sort of information is passed back. langCode has a number of possible values, all summarized by a set of predefined constants. At the time of this writing, the following constants were defined:
| |||||||||||||||
Example | This program prints the current environment version.
const version : int := Config.Lang (clLanguageVersion) put "The language version number is ", version | |||||||||||||||
Status | Exported qualified. This means that you can only call the function by calling Config.Lang, not by calling Lang.
|