Yurttas/PL/IL/Ada-95/F/01/PU/index page

From ZCubes Wiki
Jump to navigation Jump to search
ada-95 programming language fundamentals
1. program units and overall structure

  • Every application program in Ada-95 is, at least, one identified procedure.



procedure Something is
  -- declarations/definitions/instantiations
begin
  null;   -- replaced by the algorithmic sequence.
end Something;

>>

contents << | >> flow of control


Dr. Salih Yurttas