Whats the difference between these closures?
let closureA: () -> ()
and
let closureB: () -> Void
There is no difference at all
Void is an alias for ():
Void
typealias Void = ()