• Hi,

    set() - sets the content of a variable,
    e.g.

    Code
    set(var, content);


    sets the content of the variable "var" to "content"


    copy() - copy the content from one variable to an other variable,
    e.g.

    Code
    copy(varA, varB);


    copies the content from "varB" to "varA"


    note:
    set(varA, get(varB)); would be the same like - copy(varA,varB);

    best regards,
    Klaus

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!