package edu.brown.cs.student.term.repl; /** * Interface implemented by all the commands that the REPL is responsible for */ public interface Command { /** * The function that the command calls when run from the REPL * @param args - the arguments for the command * @return a string representation of the output, or error message */ String run(String[] args); }