Table of Contents

5.1 Constants

Return to DidoDLL

Purpose

Return to Top

A Constant is a symbolic name that captures a value does not change while a program is running and is usually used for capturing initialization or site specific parameters. Constants are in contrast with variables, which are symbols represent different values that can change during the execution of program.

A constant can be a:

Syntax

Return to Top

   DEFINE CONSTANT  <ConstantName> AS <SimpleExpression>;

Where

Return to Top

Examples

Return to Top

| Examples of Defining Constants in DidoLL
   DEFINE CONSTANT PRECISION       AS 2
   DEFINE CONSTANT Version         AS 3.5.1
   DEFINE CONSTANT Currency_Symbol AS '§'
   DEFINE CONSTANT Currency_Name   AS "My Coin"