Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 394 Bytes

File metadata and controls

24 lines (14 loc) · 394 Bytes

CONST

Syntax

CONST <varname> [AS <type>] = <value>

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

CONST screenAddress as uInteger = 16384