int setInt(string name, int value);
•name - the name of the variable being created or changed; must follow the rules for variable names
•value - the integer value to set the variable to
•Returns value.
•The variable name is created if it doesn't exist. If it already exists, the value of the variable becomes value.