mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
10 lines
210 B
Plaintext
Vendored
10 lines
210 B
Plaintext
Vendored
>>> val c = 3
|
|
>>> import java.util.Date
|
|
>>> Date(0).getTime()
|
|
0
|
|
>>> import java.io.ByteArrayOutputStream
|
|
>>> val s = ByteArrayOutputStream()
|
|
>>> s.javaClass!!.getName()
|
|
java.io.ByteArrayOutputStream
|
|
>>> c + 1
|
|
4 |