TestForest.java 140 B

12345678910
  1. package oram;
  2. public class TestForest {
  3. public static void main(String[] args) {
  4. Forest forest = new Forest();
  5. forest.print();
  6. }
  7. }