Avatar
omochimetaru 5/15/2023 2:04 AM
@swift-5.8.1 func animate( animations: (() -> Void)? = nil, completion: (() -> Void)? = nil ) { print("animations") animations?() print("completion") completion?() } animate { print(1) }