Created
April 2, 2018 09:46
-
-
Save sajjadyousefnia/3e99a578f6971c473918cec14e3c69f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// creates a immutable set of mixed types | |
val mixedTypesSet = setOf(2, 4.454, "how", "far", 'c') // will compile | |
var intSet: Set<Int> = setOf(1, 3, 4) // only integers types allowed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment