lukethehuman / code-review-tutorial

Code review tutorial exercises
MIT License
0 stars 0 forks source link

Exercise 1 Fortran. #14

Open github-actions[bot] opened 7 months ago

github-actions[bot] commented 7 months ago

Description

There is a bug in the calc_pi.f90. The calculation on line 17 should be

(x2 + y2 <= 1.0)

instead of

(x2 + x2 <= 1.0)

Fixes issue

Fixes https://github.com/lukethehuman/code-review-tutorial/issues/13 Fortran