fork download
  1. class HelloWorld
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. System.out.print(new OtherClass().getClass().getName());
  6. }
  7. }
  8.  
  9. class OtherClass
  10. {
  11.  
  12. }
Success #stdin #stdout 0.03s 711168KB
stdin
Standard input is empty
stdout
OtherClass