fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. interface A111{
  8. String s = "yo";
  9. public void method1();
  10. }
  11.  
  12. interface B{}
  13.  
  14. interface c extends A111,B{
  15. public void method1();
  16. public void method1(int x);
  17. }
  18.  
  19. /* Name of the class has to be "Main" only if the class is public. */
  20. class Ideone
  21. {
  22.  
  23.  
  24. public static void main (String[] args) throws java.lang.Exception
  25. {
  26. System.out.println("Simon Compa");
  27.  
  28.  
  29.  
  30. }
  31. }
Success #stdin #stdout 0.12s 50876KB
stdin
Standard input is empty
stdout
Simon Compa