Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let value: Int = 6
- switch value {
- case 1...6:
- print("1...6")
- case 6...8:
- print("6...8")
- default:
- print("other")
- }
- switch value {
- case 6...8:
- print("6...8")
- case 1...6:
- print("1...6")
- default:
- print("other")
- }
- //Output:
- //$>1...6
- //$>6...8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement