DECLARE declares a static type for a variable
Categoryname
DECLARE value type!
value - name of the declared variable type! - DATATYPE!
This method has no refinements
DECLARE declares a static type for a variable. DECLARE is needed even less than LET, because you can write the type in front a variable declaration, like in many other languages.
byte! me
whole16! [var1 var2]
You can also initialise with enumerations:
whole16! [uninitialised initialised-1: 1 initialised-2]
Where the long form is
declare [var1 var2] whole16!