Command EN Version 1.90

SET VAR

Syntax

SET VAR:VariableName,Item,DataTyp,ListSeperator;

Description

Attaches a global variable to the processing (analog) (VariableName[GLOBAL]:=Item;).
DataTyp returns the DatenTyp of the variable and a ListSeperator (always one line only) returns the separating symbol for a list.

Possible Data Types (DataTyp):
TEXT
NUMBER
FLOAT
TEXTLIST
NUMBERLIST
FLOATLIST

Example:

SET VAR:"Test","Hello",TEXT,"*";
END;

Assigns the variable

Test[GLOBAL]

to the text value "Hello".