DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / array_01.f90
12345678910
program main implicit none real(8) :: x(3) x = [1., 2., 3.] print *, x print *, sin(x) end program