Guest User

Untitled

a guest
Jun 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. /* syntax:
  2. public func assertionFailure(
  3. _ message: @autoclosure () -> String = default,
  4. file: StaticString = #file,
  5. line: UInt = #line)
  6. */
  7. guard age >= 3 else {
  8. return assertionFailure("Age can't be less than 3")
  9. }
Add Comment
Please, Sign In to add comment