MainApplication.java 313B

12345678910111213141516
  1. /**
  2. * Created by Roy Mpanju on 5/29/18.
  3. */
  4. public class MainApplication {
  5. //Operations Operations = new Operations();
  6. public static void main(String[] args) {
  7. Console.println("Welcome to my calculator!");
  8. Console.println("for HELP press ?");
  9. Operations.runCommand();
  10. }
  11. }