Files
School/Anul 2/Semestrul 1/Metode avansate de programare/Interpretor/Views/Commands/ExitCommand.java
T
2024-08-31 12:07:21 +03:00

13 lines
239 B
Java

package Views.Commands;
public class ExitCommand extends Command {
public ExitCommand(String key, String description) {
super(key, description);
}
@Override
public void execute() {
System.exit(0);
}
}