public static void main(String[] args) {
    ArrayList<Patient> patients = new ArrayList<>();

    HospitalManager hm = new HospitalManager();
    hm.launch();

    // Create a new hospital manager followed by the launch method.

  }
 public static void main(String[] args) {
   HospitalManager hm = new HospitalManager();
   hm.init();
 }