package cs3500.husky.withvars.failed1; /** * Represents a boolean expression using constants and boolean operators, * and local variable bindings. */ public interface Expr { /** * Evaluates this {@link Expr}. * @return The boolean result of this expression */ boolean evaluate(); }