We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before Fortran 90, one used implied do loops to read and write arrays, but now in the code
implicit none integer :: i, v(5) v = 0 print*,(v(i), i=1, 5) end
fortitude could suggest replacing the print statement with
print
print*,v(1:5)
and make the same suggestion for simple implied do loops in read statements.
read
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Before Fortran 90, one used implied do loops to read and write arrays, but now in the code
fortitude could suggest replacing the
print
statement withprint*,v(1:5)
and make the same suggestion for simple implied do loops in
read
statements.The text was updated successfully, but these errors were encountered: