blob: 1192ba7660f1c717e0ebd6a411847dc651e25562 [file] [log] [blame]
program testforall
integer, dimension(10) :: array
forall (I = 1:5)
array(I) = 2
array(I) = array(I) * 2
end forall
end program testforall !<<<<< 9