Keyword Const - leonard-thieu/monkey GitHub Wiki

Declares a constant value.

Syntax

  Const Identifier : Type = Expression

  Const Identifier := Expression

Description

The Const keyword declares a constant value of a given type.

The alternative syntax provided allows the variable's type to be deduced from the expression.

See also

Examples

Const EXAMPLE:Int = 100
Const NAME:String = "Bill"