7.8 Literals

7.8.1 Definitions

literal ::=
    numeric_literal
    | enumeration_literal
    | string_literal
    | bit_string_literal
    | null

numeric_literal ::=
    abstract_literal
    | physical_literal

7.8.2 Examples

3.14159_26536

A literal of the type universal_real (abstract type).

5280

A literal of the type universal_integer
(abstract type).

10.7 ns

A literal of a physical type

O"4777"

A literal of the type bit_string .

"54LS281"

A literal of the type string .

""

A String -literal which represents an empty array.