17.3.2. Declarations
At the beginning of a pic description, you may declare a
new scale, and declare any number of variables.
pic assumes you want a
1-to-1 scale, where units are inches by default. You can
declare a different scale, i.e., centimeters,
by declaring:
scale = 2.54
You may use variables instead of numbers in a description;
pic substitutes the variable's value.
Instead of:
line right n
you may use a
variable, for example, a,
by declaring at the
top of the description:
a = n
You may then write:
line right a
Variable names must begin with a lowercase letter.
The rest of the name may consist of uppercase or lowercase letters,
digits, and underscores.
Variables retain their values from picture to picture.