Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
Iceberry-qdd opened this issue Mar 9, 2022 · 0 comments
Open

Comments

@Iceberry-qdd
Copy link

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");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant