Closed TianyiShi2001 closed 4 years ago
let (a0, a1, a2) = (aa[0], aa[1], aa[2]) can be rewritten as let [a0, a1, a2] = aa as long as the size is fixed
let (a0, a1, a2) = (aa[0], aa[1], aa[2])
let [a0, a1, a2] = aa
Nice!
let (a0, a1, a2) = (aa[0], aa[1], aa[2])
can be rewritten aslet [a0, a1, a2] = aa
as long as the size is fixed