fork(1) download
  1. class Example
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. System.out.println("Ran at " + new java.util.Date());
  6. }
  7.  
  8. class A {
  9. private A() {
  10. }
  11. }
  12. class B extends A {
  13. private B() {
  14. super();
  15. }
  16. }
  17. }
Success #stdin #stdout 0.04s 321344KB
stdin
Standard input is empty
stdout
Ran at Sun Aug 14 18:54:10 GMT 2016