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 import expression with multi-level path #13

Closed douyixuan closed 3 months ago

douyixuan commented 3 months ago

minimal example:

import "encoding/binary"
func main() {
    binary.NewBuffer()
    return 0
}