1use elara_math::prelude::*; 2 3fn main() { 4 let a = tensor![[1., 2.], [3., 4.]]; 5 for el in a.iter() { 6 println!("{:?}", el); 7 } 8}