Hello
I am using the following code but it compiles fine but do not print "In Run" in console . Whats the reason behind this ?. Please help . Thanks in advance .
public class Tintin implements Runnable{
public static void main(
String ...args) {
new
Thread().start();
}
public Tintin() {
}
public void run() {
System.out.println("In Run");
}
}