PureBytes Links
Trading Reference Links
|
On Wed, 06 Aug 2003, etrader wrote:
> Hello,
>
> Does anyone know of a programming hack that will allow me to store a string
> constant into a EL variable (ie. Var: name("mode")). EL only seems to
> support numeric/boolean variables, but not string variables.
Create the variable just as you've described:
Var: label("");
label = "howard";
|