MainApplication.java 305B

12345678910111213141516171819
  1. /**
  2. * Created by leon on 2/9/18.
  3. *
  4. * Updated by Allison on 5/25/2018
  5. */
  6. public class MainApplication {
  7. public static void main(String[] args) {
  8. Console c = new Console();
  9. c.runCommandLoop();
  10. Console.println("\n(Calculator closed)");
  11. }
  12. }