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

From ZCubes Wiki
Revision as of 04:44, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "{| width="100%" cellpadding="4" | class="y01" | <span class="b10"> ada-95 programming language fundamentals </span> | class="y01" | <div class="right"><span class="h06b"> 1...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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