We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb7c9f5 commit 376b08cCopy full SHA for 376b08c
STYLE_GUIDE.md
@@ -61,6 +61,15 @@ focus on the semantics of the proposed changes rather than style and formatting.
61
```
62
When defining many arrays of the same dimension, `dimension` can be used as an exception if it makes the code less verbose.
63
* If the `optional` attribute is used to declare a dummy argument, it should follow the `intent` attribute.
64
+* For module procedures, declare attributes before the `module` keyword for better retro compatibility:
65
+ Use this:
66
+ ```
67
+ pure module function example()
68
69
+ instead of:
70
71
+ module pure function example()
72
73
74
## End <scope> block closing statements
75
0 commit comments