const
constantName =
constantValue
The const
statement creates a new user-defined constant with the specified name and value.
Attempting to create a new user-defined constant with the name of an existing constant (including constants previously defined with const
) has no effect. No script error is triggered, and the constant maintains its previously defined value. This may change in a future version of OpenXION.