fork download
  1. class Nthread extends Thread{
  2. public void run(){
  3. System.out.print("Hi");}
  4. public static void main(String args[]){
  5. Nthread th1=new Nthread();
  6. Nthread th2=new Nthread();
  7. }}
Success #stdin #stdout 0.09s 47060KB
stdin
Standard input is empty
stdout
Standard output is empty