buzz-language / buzz

👨‍🚀 buzz, A small/lightweight statically typed scripting language
https://buzz-lang.dev
MIT License
1.21k stars 34 forks source link

`object`/`class` collectors #2

Closed giann closed 1 year ago

giann commented 2 years ago

Special method that will be called when the object is collected:

object File {
    | ...

    fun collect() {
        this.close();
    }
}