Changes between Version 8 and Version 9 of FpCodingStandard


Ignore:
Timestamp:
Sep 11, 2022, 10:03:18 AM (20 months ago)
Author:
pesei
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FpCodingStandard

    v8 v9  
    1616    - we use ELSEIF and ENDIF (written together) but END DO (maybe unify later)
    1717
    18   5. Variables that are passed between subroutines should be marked in the subroutine as input (`i)`, output (`o`) or both (`i/o`) when values are changed both in the subroutine and in other routines. This should be done just below the subroutine statement. Again, this has become a mess because of the automatic transcription. We will try to make it systematic again.
    19 It is also acceptable if an INTENT keyword is present in the declaration section,
     18  5. Variables that are passed between subroutines should be marked in the subroutine as input (`i)`, output (`o`) or both (`i/o`) when values are changed both in the subroutine and in other routines. This should be done just below the subroutine statement. Again, this has become a mess because of the automatic transcription. We will try to make it systematic again. It is also acceptable if an INTENT keyword is present in the declaration section,
    2019
    2120  6. If you make changes in a subroutine, explain them in the header: Who? Why? What? When?