Yurttas/PL/IL/Ada-95/F/01/PU/idents.html

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

  • Ada-95 is case-insensitive and free-formatted language for source text. procedure
    Procedure
    PROCEDURE
    are all identical to Ada-95 compiler.



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

  • reserved keywords, standard identifiers, and user-defined identifiers are coded differently as a style in a convention.
<<

contents << | >> flow of control


Dr.Salih Yurttas