Changes between Version 22 and Version 23 of doc/tec/developerrules/palmstandard


Ignore:
Timestamp:
Oct 7, 2020 6:24:59 AM (4 years ago)
Author:
raasch
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/tec/developerrules/palmstandard

    v22 v23  
    268268* Variables in declaration statements (see Fig. 4)
    269269
     270== (5.4) Handling of lists of variables ==
     271* In namelists, one variable per line:
     272{{{
     273NAMELIST /abcde/  var_a,  &
     274                  var_b,  &
     275                  ...
     276}}}
     277* In argument lists, consecutive up to the allowed line width:
     278{{{
     279SUBROUTINE sub_a( var_a, var_b, ... )
     280}}}
     281
    270282
    271283