Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // destroyed by `-Ounchecked`
  2. import Foundation
  3.  
  4. let a: Int
  5.  
  6. switch arc4random() % 3 {
  7. case 0:
  8. print("0")
  9. a = 111
  10. case 1:
  11. print("1")
  12. a = 222
  13. default:
  14. print("default")
  15. preconditionFailure()
  16. }
  17.  
  18. print(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement