My question is, does anybody use java? Like, you can already code in Kotlin and it still uses JVM. Kotlin has lot of simpler syntax than Java.
For comparison, here is Java and Kotlin “hello world”.
Kotlin:
Java:
It feels like Kotlin might overtake Java. I code in Java, and I wint switch to other coding language just because “its new” or “better”.
Your oppinion fellas?
For comparison, here is Java and Kotlin “hello world”.
Kotlin:
Code:
fun main(args : Array<String>) {
println("Hello, World!")
}
Java:
Java:
class HelloWorldKt {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
It feels like Kotlin might overtake Java. I code in Java, and I wint switch to other coding language just because “its new” or “better”.
Your oppinion fellas?