Skip to content

Should we consider adding the Java code decompiled from Kotlin? #70

@Iceberry-qdd

Description

@Iceberry-qdd

Would it be possible to consider adding Java code decompiled from Kotlin for each example? This would make it more intuitive to see the differences between the two.

An example is as follows:

Print to Console

Java

System.out.print("Amit Shekhar");
System.out.println("Amit Shekhar");

Kotlin

print("Amit Shekhar")
println("Amit Shekhar")

Java(Decompiled from the above Kotlin code)

System.out.print((Object) "Amit Shekhar");
System.out.println((Object) "Amit Shekhar");

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions