Changes between Version 15 and Version 16 of HowTo/FortranStandards


Ignore:
Timestamp:
2013-04-26T18:14:22+02:00 (11 years ago)
Author:
jryder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/FortranStandards

    v15 v16  
    1 = Fortran style guide = 
     1= Orchidee Fortran style guide = 
    22 
    33[[BR]]  
     
    3232[[BR]]  
    3333 
    34 1) For function/suroutine calls, there should only be five arguments per line. 
     34(1) For function/subroutine calls, there should only be five arguments per line. 
    3535{{{ 
    3636CALL subroutine(arg1, arg2, arg3, arg4, arg5, & 
     
    123123= Variable definitions = 
    124124 
    125 Choosing where and when to define particular variables; portability between compilers; allocation/de-allocation of arrays etc. 
     125''Choosing where and when to define particular variables; portability between compilers; allocation/de-allocation of arrays etc.'' 
    126126 
    127127[[BR]]