Tagged Questions

Kotlin is a statically-typed programming language developed by JetBrains. It compiles to JVM byte codes and JavaScript. You can write and run your programs online at http://kotlin-demo.jetbrains.com/

learn more… | top users | synonyms

12
votes
1answer
1k views

Reified generics in Scala 2.10

The lack of reified generics in Scala is the thing that bugs me the most about the language, since simple things cannot be implemented without using complicated constructs. Both Kotlin and Ceylon ...
3
votes
3answers
61 views

How did Kotlin get its name?

How did the Kotlin language get its name? I'm particularly interested since Kotlin is something I might type by accident while writing my name.
2
votes
1answer
135 views

Understanding traits in Kotlin

In Kotlin we'll have possibility to create a "trait that may require a class being extended on the call side", like class Bar {} trait T1 : Bar {} class Foo : Bar, T1, T2, T3 {} class Wrong : ...
1
vote
1answer
19 views

Reason for precedence of operators with a type on the right-hand side

http://confluence.jetbrains.net/display/Kotlin/Grammar#Grammar-Precedence gives the operator precedence table for Kotlin, including the operators with a type on the right-hand side, :, as and as?, ...
0
votes
2answers
35 views

how to run compiled class file in Kotlin?

Jetbrain provides documents but I can't find how to run compiled class file of Kotolin. hello.kt: fun main(args : Array<String>) { println("Hello, world!") } compile: $ kotlinc -out dist ...
0
votes
0answers
222 views

What are the differences between Scala and Kotlin [closed]

Kotlin is the new "statically-typed JVM-targeted programming language" with main design goals such as being Java compatible, fast compile times, and supporting cool other modern features (fp etc) that ...