DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / array_02.f90
1234567891011
program array_02 implicit none real, dimension(3) :: a, b a = [1, 2, 3] b = (/ 1, 2, 3 /) print *, a, b end program