MainApplication.java 268B

123456789101112131415
  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. Operations.runCommand();
  9. }
  10. }