Skip to content

Commit

Permalink
a=a+b**2
Browse files Browse the repository at this point in the history
  • Loading branch information
natedill committed Apr 13, 2018
1 parent 66d9e8d commit c65147c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SUBROUTINE SOLVER(A,B)
INTEGER,INTENT(INOUT) :: A
INTEGER,INTENT(IN) :: B

A = A + B
A = A + B*B

END SUBROUTINE

Expand Down

0 comments on commit c65147c

Please sign in to comment.