buzz
buzz copied to clipboard
`object`/`class` finalizer
Special method that will be called when the object is collected:
object File {
| ...
fun collect() {
this.close();
}
}