var removal: (() -> Void)? = nil
; that’s a closure that accepts no parameters and sends nothing back, defaulting to nil so we don’t need to provide it unless it’s explicitly needed.
Currently building at the Recurse Center
var removal: (() -> Void)? = nil
; that’s a closure that accepts no parameters and sends nothing back, defaulting to nil so we don’t need to provide it unless it’s explicitly needed.