Files
kotlin/compiler/testData/repl/objects/simpleObjectDeclaration.repl
2014-08-13 15:13:22 +04:00

6 lines
73 B
Plaintext
Vendored

>>> object Life {
... fun meaning() = 42
... }
>>> Life.meaning()
42