fn main(){ let a :[f32 ; 4] = [0.1, 0.2, 0.3, 0.4] ; // créer un tableau println ! ("{} {} {} {}",a[0],a[1],a[2],a[3]) }