Ada Programming/Delimiters/;
From Wikibooks, the open-content textbooks collection
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);