DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / print_arr_07.f90
123456789
! Check the working of ArrayItem program print_arr_07 implicit none integer :: x(3) x(1) = 1 x(2) = 2 x(3) = 3 print *, x, x(2) end program