-
```fortran
program main
implicit none
integer :: res(4)
real :: x(1,4), center, order
integer, parameter :: dim = 1
order = 2
x = 1
center = 0
res = sum((x - c…
-
I ran into an error when attempting union some tables with the CTE option turned on.
``` r
tib
-
I am making a graph plot from out table, when the result came my samples from same group go far apart from each other. LF1,LF2,LF3 and HF1, HF2, HF3.. I want them to be like LF1,LF2.. hf1, hf2, hf3 bu…
-
I am making a graph plot from OTU table, when the result came my samples from same group go far apart from each other. LF1,LF2,LF3 and HF1, HF2, HF3.. I want them to be like LF1,LF2.. hf1, hf2, hf3 bu…
-
NaN should not be printed with a + or - sign before it. Lfortran gave ```-``` with this program. Evidence:
```
(lf2) john:~/Test/Glist$ cat testnan2.f90
print *,0.0/0.0
end program
(lf2) john:…
-
This program with an ```entry``` statement won't compile with lfortran:
```
(lf2) john:~/Test/Glist$ cat testentry2.f90
! Is entry OK? Must be in an external or module subprogram
module entrymod
…
-
This program gives different wrong output each time it runs, but no error message, unlike my bug report #3819 where the subroutine was internal. It is now in a module. Evidence:
```
(lf2) john:~/Tes…
-
The declaration of x in this program appears to be standard-conforming, by F2018 10.1.12 para 2. Five compilers including g95 allowed it, but lfortran did not:
```
(lf2) john:~/Test/Glist$ cat bigde…
-
Wtih https://github.com/lfortran/lfortran/pull/3156, we can seed the `random_number()` manually. For example:
```bash
(lf2) % cat examples/expr2.f90
program expr2
implicit none
integer…
-
This program prints two colons with nothing between them with gfortran, ifort, ifx and g95. So does AOCC flang
after a compile-time warning 'Array declared with zero size', but lfortran prints the 3…