I keep getting an error from swift playgrounds that it can't find the "missing argument for parameter 'closure' in call."
func someFunc(closure: () -> (), closure2: () -> ()) {
closure()
closure2()
}
someFunc() {
print("Calling from closure()")
} closure2: {
print("Calling from closure2()")
}