Ada Programming/Delimiters/;

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search

Ada Lovelace 1838.jpg

Contents


[edit] Statement delimiter

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

   null;

[edit] Delimiter in function and procedure parameter declarations

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

[edit] See also

[edit] Wikibook

[edit] Ada Reference Manual