Futurebasic/Language/Reference/constant declaration

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Constant declaration statement[edit | edit source]

Constant declaration[edit | edit source]

Statement[edit | edit source]

✔ Appearance ✔ Standard ✔ Console

Syntax[edit | edit source]

_constantName = staticExpr

Description[edit | edit source]

This is a non-executable statement which assigns the value of staticExpr to the symbolic constant indicated by _constantName. The _constantName must indicate a name which was not defined anywhere previously in the program, and which is different from all pre-defined FB symbolic constant names. The name must be preceded by an underscore ( _ ) character. The staticExpr must be a "static integer expression"; it cannot contain any variables nor function references.

The constant declaration statement is one of several ways to assign values to symbolic constant names. Other ways include using the DIM RECORD statement and using the BEGIN ENUM statement.

See Also[edit | edit source]

DIM RECORD
BEGIN ENUM
Appendix C: Data Types and Data Representation