buzz
buzz copied to clipboard
`defer`
Zig-like defer keyword that will execute an expression just before exiting the current function.
fun main() > void {
File file = File.open("hello", mode: FileMode.read);
defer file.close();
|...
}