|
|
|
|
|
by hliyan
2479 days ago
|
|
Was considering using this as comparative language teaching tool, and the thing that struck me most was the verbosity of Java compared to other languages: fun main(args: Array<String>) {
println("Hello from Kotlin!")
}
vs. public class Main {
public static void main(String[] args) {
System.out.println("Hello from Java!");
}
}
|
|