Ada Programming/Delimiters/dot
< Ada Programming < DelimitersComputing » Computer Science » Computer Programming » Ada Programming

- The title given to this book is incorrect due to technical limitations. The correct title is Ada Programming/Delimiters/..
Decimal literals
π := constant := 3.145926;
Based literals
Not_π := constant := 16#3.145926#;
Names
Used in the explicit dereference of an access type, like in:
X := Some_Access.all;
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);
Subprogram declarations
Declaration of a separate procedure or function.
See also
Wikibook
Ada Reference Manual
- 2.4.1 Decimal Literals (Annotated)
- 2.4.2 Based Literals (Annotated)
- 4.1 Names (Annotated)
- 4.1.3 Selected Components (Annotated)
- 6.1 Subprogram Declarations (Annotated)
- Annex P (informative) Syntax Summary (Annotated)
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.