1 package calculator.command; 2 3 public class ExitCommand implements CLICommand { 4 @Override 5 public boolean execute(String args) { 6 System.exit(0); 7 return true; 8 } 9 }