TestForest.java 254 B

1234567891011121314
  1. package oram;
  2. public class TestForest {
  3. public static void main(String[] args) {
  4. Forest forest1 = new Forest();
  5. Forest forest2 = new Forest();
  6. Forest forest3 = forest1.xor(forest2);
  7. forest1.print();
  8. forest2.print();
  9. forest3.print();
  10. }
  11. }