ivan.morgillo
12/17/2015, 1:24 PMlateinit
?ivan.morgillo
12/17/2015, 1:25 PMabreslav
12/17/2015, 1:34 PMadinugroho
12/17/2015, 1:39 PMmikehearn
12/17/2015, 1:54 PMmikehearn
12/17/2015, 1:54 PMivan.morgillo
12/17/2015, 2:11 PMivan.morgillo
12/17/2015, 2:11 PMvmironov
12/17/2015, 2:17 PMextra clarity around "kotlin 2.0" and in particular, promise not to do that for e.g. at least 5 yearseven Java has a shorter release cycle
mikehearn
12/17/2015, 2:17 PMmikehearn
12/17/2015, 2:17 PMvmironov
12/17/2015, 2:17 PMmikehearn
12/17/2015, 2:18 PMorangy
mikehearn
12/17/2015, 2:28 PMvoddan
12/17/2015, 2:30 PMabreslav
12/17/2015, 2:32 PMjshmrsn
12/17/2015, 2:43 PMivan.morgillo
12/17/2015, 2:50 PMjshmrsn
12/17/2015, 2:51 PMjshmrsn
12/17/2015, 2:52 PMjshmrsn
12/17/2015, 2:53 PMval foo = try { "foo" } catch { println("error!") System.exit(1) }
and Kotlin was saying foo was String?, not String, because of the catch case.jshmrsn
12/17/2015, 2:54 PMfun exit(status: Int): Nothing {
System.exit(status)
throw Exception("(this should never be seen)")
}
which solved my problem, but seemed like something that could be in the standard libraryivan.morgillo
12/17/2015, 2:57 PMcedric
12/17/2015, 3:19 PMjshmrsn
12/17/2015, 3:20 PMcedric
12/17/2015, 3:21 PMcedric
12/17/2015, 3:22 PMjshmrsn
12/17/2015, 3:22 PMdalexander
12/17/2015, 4:23 PM