diff options
author | Ily <90933947+Ily83@users.noreply.github.com> | 2022-11-04 23:31:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-04 23:31:59 +0100 |
commit | 1f71450a4c8f222bf646ed326359881807626d4b (patch) | |
tree | 3223ad0384a7aad0afcaad4bb8355cb72a2d41bf | |
parent | 8c78bb13d93806ee78508b55aae79b2cfa05f1dc (diff) |
Update fortran90.html.markdown
Requested change done
-rw-r--r-- | fortran90.html.markdown | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fortran90.html.markdown b/fortran90.html.markdown index 8ba0de5b..434f1c02 100644 --- a/fortran90.html.markdown +++ b/fortran90.html.markdown @@ -437,7 +437,8 @@ contains end module fruity -! ISO Standard Fortran 2008 introduced the DO CONCURRENT construct to allow you to express loop-level parallelism +! ISO Standard Fortran 2008 introduced the DO CONCURRENT construct to allow you +! to express loop-level parallelis integer :: i real :: array(100) @@ -447,7 +448,8 @@ DO CONCURRENT (i = 1:size(array)) END DO -! Only calls to pure functions are allowed inside the loop and we can declare multiple indices: +! Only calls to pure functions are allowed inside the loop and we can declare +! multiple indices: integer :: x, y real :: array(8, 16) |