3 lines
98 B
Swift
3 lines
98 B
Swift
// Swift has Int.isMultiple(of:Int) -> Bool
|
|
|
|
var isEven: (_:Int) -> Bool = {$0.isMultiple(of: 2)}
|