Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. func withoutGuard() {
  2. if let firstName = firstName {
  3. if let lastName = lastName {
  4. if let address = address {
  5. doSomething(firstName, lastName, address)
  6. }
  7. }
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement