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.

Statement delimiter[edit | edit source]

The ; is used to terminate all statements and declarations. It has no meaning on its own—hence an empty statement is:

   null;

Delimiter in function and procedure parameter declarations[edit | edit source]

procedure Cuadratic_Equation (A, B, C : in  Float;
                              R1, R2  : out Float;
                              Valid   : out Boolean);

See also[edit | edit source]

Wikibook[edit | edit source]

Ada Reference Manual[edit | edit source]