DEBSOURCES
Skip Quicknav
sources / lfortran / 0.58.0-3 / tests / array3.f90
123456789
program array3 implicit none real, dimension(3) :: a, b a = [1, 2, 3] b = (/ 1, 2, 3 /) end program