astra.debugger.DebuggerCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-interpreter Show documentation
Show all versions of astra-interpreter Show documentation
Core interpreter artifact for the ASTRA Language
package astra.debugger;
public interface DebuggerCommand {
public static final String FAIL = "FAIL";
public static final String OK = "OK";
public static final String UNKNOWN = "?";
public String execute(DebuggerWorker worker, String[] arguments);
}