Fortran90 introduced the notion of array and array syntax, eg.
program main real, dimension(100,100) :: a, b a = 1.0 b = 2.0 a = a+b*3.0+4.0 end program main