buzz icon indicating copy to clipboard operation
buzz copied to clipboard

`object`/`class` finalizer

Open giann opened this issue 3 years ago • 0 comments

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

object File {
    | ...

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

giann avatar Mar 18 '22 13:03 giann