IncludeFromVar
IncludeFromVar>variable_name
IncludeFromVar works like Include but using code stored in a script variable rather than code from a file.
Any valid script code stored in a variable can therefore be executed as if it were part of the main script.
See also: Include
Example
LabelToVar>MyLabel,somevar
IncludeFromVar>somevar
/*
MyLabel:
Let>x=5
MessageModal>x
*/