Documentation
Home
const name [ : type ] = expression [ , name [ : type ] = expression ]*
const a = 10; const b : String = "Hello";
const
var
Any attempt to change the value of a const will result in an error.