Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Could you please tell me how to run java code in kotlin file in this compiler.

+1 vote
asked Mar 16 by talha noob (130 points)

Kotlin Code
fun main() {     var myjavaobject = Numbers()     myjavaobject.myfunction() } 


Java Code
public class Numbers {     public void myfunction(){         System.out.println("I am from java file. My class name is Numbers. I'm getting called by kotlin code\n");     } } 
I want to know how can I use java code in my above kotlin code.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...