define
define — assigns a symbol name to a constant.
Synopsis
(define constant new_value )
Parameters
- constant
The symbol name of the
constant.
- new_value
The value of the constant to be
used.
Description
This command provides a way of associating a symbolic name with a
constant. It is useful in configuration files to improve readability.
Example
(define FULL_SCALE 100.0)