shithub: mc

ref: 4665f57c5a86ade9ef524b3d7380f6fcd1abb0ff
dir: /test/destructuretup.myr/

View raw version
use std

const main = {
    var a,b
    ((a, b), _) = ((1, 2), 3)
    std.assert(a+b == 3, "fail\n")
}