buzz icon indicating copy to clipboard operation
buzz copied to clipboard

`defer`

Open giann opened this issue 3 years ago • 0 comments

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();

    |...
}

giann avatar Mar 18 '22 14:03 giann