Skip to content

Instantly share code, notes, and snippets.

@zorn
Created February 28, 2015 20:55
Show Gist options
  • Save zorn/d333ed00458441386567 to your computer and use it in GitHub Desktop.
Save zorn/d333ed00458441386567 to your computer and use it in GitHub Desktop.
// Playground - noun: a place where people can play
import UIKit
let action1 = {
println("action1")
}
let action2 = {
println(2)
}
let actions:[()->Void] = [action1, action2, {println("action3")} ]
for i in actions {
if (i === action1) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment