RosettaCodeData/Task/Loop-over-multiple-arrays-simultaneously/HicEst/loop-over-multiple-arrays-simultaneously.hicest

9 lines
105 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
CHARACTER :: A = "abc"
REAL :: C(3)
C = $ ! 1, 2, 3
DO i = 1, 3
WRITE() A(i), "ABC"(i), C(i)
ENDDO