Skip to content

Instantly share code, notes, and snippets.

@pushkarnk
Last active June 24, 2016 10:33
Show Gist options
  • Save pushkarnk/ff87d9970d7a8256b5bc716a73f479f6 to your computer and use it in GitHub Desktop.
Save pushkarnk/ff87d9970d7a8256b5bc716a73f479f6 to your computer and use it in GitHub Desktop.
Swifty Encounter[1]
import Foundation
public class Test : NSObject {
public init?(x: Bool) {
guard x == true else { return nil }
}
public override var description: String {
return "test"
}
}
print(Test(x: true))
print(Test(x: false))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment