This commit is contained in:
Nikolay Igotti
2016-12-14 18:19:16 +03:00
committed by SvyatoslavScherbina
parent 86a6771a09
commit 3b7321ef94
6 changed files with 43 additions and 6 deletions
@@ -1,10 +0,0 @@
class Box<T>(t: T) {
var value = t
}
fun main(args: Array<String>) {
val box: Box<Int> = Box<Int>(17)
println(box.value)
}