
com.elega9t.commons.shell.intrprtr.cmd.ExitCommand Maven / Gradle / Ivy
The newest version!
package com.elega9t.commons.shell.intrprtr.cmd;
import com.elega9t.commons.shell.Shell;
import com.elega9t.commons.shell.intrprtr.Command;
public class ExitCommand extends Command {
public ExitCommand() {
super("exit");
}
@Override
public int execute(Shell shell) {
shell.nextInterpreter();
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy