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.

Operator[edit | edit source]

Standard operations[edit | edit source]

Arithmetic division[edit | edit source]

The "/" operator is defined as arithmetic division for all numeric types.

function "/" (Left, Right : T) return T;
Usage[edit | edit source]
A : constant Float   := 5.0 / 2.0;  -- A is now 2.5
B : constant Integer := 5 / 2;      -- B is also 2

See also[edit | edit source]

Wikibook[edit | edit source]

Ada Reference Manual[edit | edit source]



Ada Operators
and and then > + abs &
or or else >= - mod
xor = < * rem in
not /= <= ** / not in