Guest User

Untitled

a guest
Jun 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /* syntax:
  2. public func assert(
  3. _ condition: @autoclosure () -> Bool,
  4. _ message: @autoclosure () -> String = default,
  5. file: StaticString = #file,
  6. line: UInt = #line)
  7. */
  8. let minAge = 2
  9. assert(minAge >= 3, "Age did not meet expectation")
Add Comment
Please, Sign In to add comment