You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Main.java 397B

1234567891011121314151617
  1. package com.uqac.rthoni.java_rmi;
  2. import com.uqac.rthoni.com.java_rmi.client.ClientTestClass;
  3. import com.uqac.rthoni.com.java_rmi.server.ServerTestClass;
  4. /**
  5. * Created by robin on 9/15/16.
  6. */
  7. public class Main {
  8. public static void main(String[] args)
  9. {
  10. ClientTestClass t2;
  11. ServerTestClass t3;
  12. System.out.println("Hello World!");
  13. System.exit(0);
  14. }
  15. }