Ada Programming/Delimiters/.

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

Ada. Time-tested, safe and secure.
Ada. Time-tested, safe and secure.

Decimal literals[edit | edit source]

π := constant := 3.145926;

Based literals[edit | edit source]

Not_π := constant := 16#3.145926#;

Names[edit | edit source]

Used in the explicit dereference of an access type, like in:

X := Some_Access.all;

Selected components[edit | edit source]

Selection of components from records and packages, entries from tasks and protected types, and - in Ada 2005 - primitive operations from tagged types.

My_Object.My_Operation (Some_Parameter);

Subprogram declarations[edit | edit source]

Declaration of a separate procedure or function.

See also[edit | edit source]

Wikibook[edit | edit source]

Ada Reference Manual[edit | edit source]