CONST
Syntax
Section titled “Syntax”CONST <varname> [AS <type>] = <value>
Description
Section titled “Description”CONST declares a non-modifable variable.
<type>
can be something like Integer
, Byte
, Float
, etc.
See the list of available types. If type is not specified,
Float
will be used, unless you use a modifier like $
or %
.
Examples
Section titled “Examples”CONST screenAddress as uInteger = 16384