You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pretty self-explanatory. I tried to use "[[1, 0, 0], [0, 1, 0], [0, 0, 1]]" for a [[i32; 3]; 3], but the parser gives an ExpectedArray error. It worked once I changed it to "((1, 0, 0), (0, 1, 0), (0, 0, 1))".
Pretty self-explanatory. I tried to use "[[1, 0, 0], [0, 1, 0], [0, 0, 1]]" for a
[[i32; 3]; 3], but the parser gives anExpectedArrayerror. It worked once I changed it to "((1, 0, 0), (0, 1, 0), (0, 0, 1))".