cell-labs / cell-script

Cell Script is a new designed language for smart-contract programming on UTXO chain, currently supports CKB.
https://cellscript.io
MIT License
20 stars 6 forks source link

support return expression return table initialization expression #18

Open douyixuan opened 3 months ago

douyixuan commented 3 months ago
type T table {
}

func foo() (T, T) {
    return T{}, T{}
}