Ada Programming/Delimiters/dot
From Wikibooks, the open-content textbooks collection
- The title given to this book is incorrect due to technical limitations. The correct title is Ada Programming/Delimiters/..
Contents |
[edit] Decimal literals
π := constant := 3.145926;
[edit] Based literals
Not_π := constant := 16#3.145926#;
[edit] Names
Used in the explicit dereference of an access type, like in:
X := Some_Access.all;
[edit] Selected components
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);
[edit] Subprogram declarations
Declaration of a separate procedure or function.

