Add a type or the dynamic keyword as type parameter infront of a variable and add a redefine operator.
Example:
// Define staticly
public UInt8 myAge = 122;
myAge = 11;
// Redefine staticly
myAge := UInt16
myAge = 1123;
// Define dynamic
public dynamic handSlot = 0;
handSlot = "Now I'm a string :)";
Add a type or the
dynamickeyword as type parameter infront of a variable and add a redefine operator.Example: