الرجوع
تسجيل الدخول

What is the output of the code ?

class YourClass {

  void YourClass() {
      System.out.println("Hello world");
  }

  public static void main(String[] args) {
      YourClass obj = new YourClass();
  }
}