Allows you to equate a variable to a value. It may seem surprising, but the ``=" character is actually a full command name, and is dealt with in the same way as other SCL/SPECX commands. It has two prompts:
The SCL preparser also traps commands of the form ``Variable =" or ``variable=" and modifies them to the form ``= variable". Thus you can make an assignment in two basically different ways:
Examples:
>> n = 5 or n=5 etc
>> = n 5 or =n 5 etc
>> a(5) = TRUE
>> =a(n) true