alexcouch
01/07/2018, 6:16 AMvar (str1, str2): String
as a way of declaring a local/top-level var/val to be of whatever type you want it to be, and only as long as you want them both to be a var or a val as I've shown (otherwise it'd be counter intuitive). Is there a hacky way of doing so, or is it just not at all desired and for what reason?adam-mcneilly
01/07/2018, 7:09 AMvar (a, b, c) = arrayOf("Adam", "Alex", "Couch")
println(a)
println(b)
println(c)
alexcouch
01/07/2018, 7:15 AMadam-mcneilly
01/07/2018, 7:15 AMalexcouch
01/07/2018, 7:18 AMcedric
01/07/2018, 7:30 AMalexcouch
01/07/2018, 7:30 AM