Ada Programming/Delimiters/;


Ada Lovelace 1838.jpg


Statement delimiter

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

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

See also

Wikibook

Ada Reference Manual

Last modified on 5 January 2009, at 23:39