Harshita Kalani
Harshita Kalani
I guess @Pranavchiku is already working on this issue: https://github.com/lfortran/lfortran/pull/3464
With the implementation of `pack` here https://github.com/lfortran/lfortran/pull/3464, I'm getting the following difference in output with GFortran and LFortran. ```console $ gfortran a.f90 && ./a.out 1 5 1 2 3 4...
Closing as works perfect with the latest main.
```fortran program main real(4) :: x(5) = [1, 2, 3, 4, 5] print*, sum(x, mask = .true.) end ``` ```console $ gfortran b.f90 && ./a.out 15.0000000 $ lfortran b.f90 ASR...
```fortran program main real(4) :: x(5) = [1, 2, 3, 4, 5] integer :: dim = 1 print*, sum(x, dim) end ``` The above gives correct output when `dim` =...
I believe this is resolved already.
Hey @kgryte , please have a review and lmk if anything needs to be updated.
@kgryte please have a review.
Hey @kgryte , please review it and suggest me a good issue to pick next.
 I'm getting this linting error whenever I try to commit. Please suggest how to get over with the error.