Eiffel Coding Standard

Revision as of 00:50, 2 August 2013 by Manus (Talk | contribs)

Language consideration

  • Do not put a blank line between
  • create and creation instructions
  • inherit and parent clauses
  • Do not use assertion clauses without tag names.

Style

  • If instructions:
if expr1 then
    ...
elseif expr2 then
    ...
else
    ...
end