File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -44,21 +44,21 @@ focus on the semantics of the proposed changes rather than style and formatting.
44
44
45
45
## Attributes
46
46
47
+ <!-- ATTENTION! This section includes intentional trailing whitespace to get decent formatting with GFM and Python Markdown. -->
48
+
47
49
* Always specify ` intent ` for dummy arguments.
48
50
* Don't use ` dimension ` attribute to declare arrays because it is less verbose.
49
- Use this:
50
-
51
+ Use this:
51
52
```
52
53
real, allocatable :: a(:), b(:,:)
53
- ```
54
-
55
- instead of:
56
-
54
+ ```
55
+ instead of:
57
56
```
58
57
real, dimension(:), allocatable :: a
59
- real, dimension(:,:), allocatable :: b
58
+ ```
60
59
```
61
-
60
+ real, dimension(:,:), allocatable :: b
61
+ ```
62
62
When defining many arrays of the same dimension, ` dimension ` can be used as an exception if it makes the code less verbose.
63
63
* If the ` optional ` attribute is used to declare a dummy argument, it should follow the ` intent ` attribute.
64
64
You can’t perform that action at this time.
0 commit comments