fork download
  1. class Foo{
  2. void Foo(){
  3. System.out.println("Hello");
  4. }
  5.  
  6. void Foo(String str){
  7. System.out.println("Bye");
  8. }
  9.  
  10. }
  11.  
  12. class Test{
  13. public static void main (String[] args){
  14. Foo f = new Foo();
  15. }
  16. }
Success #stdin #stdout 0.09s 54564KB
stdin
Standard input is empty
stdout
Standard output is empty