• We are an English-only forum. Selling threads should have samples, or permanent ban.

Anybody uses java?

Leopard

First Lieutenant
RaidForum.co
Joined
Apr 12, 2024
Messages
16
Reaction score
3
Credits
0
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:
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?
 
I am gonna drop Java beginner tutorial this week, stay tuned!
 
Back
Top Bottom