Harshita Kalani

Results 149 comments of 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.

Hey @kgryte , please review it and suggest me a good issue to pick next.

![image](https://user-images.githubusercontent.com/95532771/229337780-77a26dda-6dd2-4ea2-9f47-84c5cfb0184a.png) I'm getting this linting error whenever I try to commit. Please suggest how to get over with the error.