Advertisement
Guest User

Untitled

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