Ada Programming/Keywords/is
< Ada Programming | Keywords
The keyword is separates the name of an entity from its definition.
In type declarations Edit
type
Day_Of_Monthis
new
range
1 .. 31;
In subtype declarations Edit
subtype
Day_Of_Februaryis
Day_Of_Monthrange
1 .. 29;
In package declarations Edit
package
My_Packageis
... -- declarationsend
My_Package;
In procedure and function declaration Edit
procedure
My_Procedureis
... -- declarationsbegin
... -- sentencesend
My_Procedure;
In generic instantiations Edit
package
Day_Of_Month_IOis
new
Ada.Text_IO.Integer_IO (Num => Day_Of_Month);
See also Edit
Wikibook Edit
Ada Reference Manual Edit
Ada Quality and Style Guide Edit
Ada Keywords | ||||
---|---|---|---|---|
abort
|
else
|
new
|
return
|
|
abs
|
elsif
|
not
|
reverse
|
|
abstract (Ada 95)
|
end
|
null
|
||
accept
|
entry
|
select
|
||
access
|
exception
|
of
|
separate
|
|
aliased (Ada 95)
|
exit
|
or
|
some (Ada 2012)
|
|
all
|
others
|
subtype
|
||
and
|
for
|
out
|
synchronized (Ada 2005)
|
|
array
|
function
|
overriding (Ada 2005)
|
||
at
|
tagged (Ada 95)
|
|||
generic
|
package
|
task
|
||
begin
|
goto
|
pragma
|
terminate
|
|
body
|
private
|
then
|
||
if
|
procedure
|
type
|
||
case
|
in
|
protected (Ada 95)
|
||
constant
|
interface (Ada 2005)
|
until (Ada 95)
|
||
is
|
raise
|
use
|
||
declare
|
range
|
|||
delay
|
limited
|
record
|
when
|
|
delta
|
loop
|
rem
|
while
|
|
digits
|
renames
|
with
|
||
do
|
mod
|
requeue (Ada 95)
|
xor
|