InitForest.java 165 B

123456789101112
  1. package ui;
  2. import oram.Forest;
  3. public class InitForest {
  4. public static void main(String[] args) {
  5. Forest forest = new Forest();
  6. forest.writeToFile();
  7. }
  8. }