Definition a default data type
DEFAULT INTEGER
DEFAULT FLOAT
DEFAULT STRING
DEFAULT <identifier>
DEFAULT sets the given datatype as type of default for variables and functions.This works at the source file up to the next declaration.
As parameters possible is INTEGER, FLOATS and STRING. In addition, any identifier with suffix can be used, in order to select a type. The identifier itself has here no further meaning.
|