FOP-2425-Marathon/src/main/java/h07/NumberExpression.java
Oshgnacknak 1b00d4c29b Squashed 'solution/H07/' content from commit d17f229
git-subtree-dir: solution/H07
git-subtree-split: d17f22991286e5f500e50c2510a30531b6f28463
2025-03-16 16:48:37 +01:00

16 lines
339 B
Java

package h07;
import org.tudalgo.algoutils.student.annotation.StudentCreationRequired;
/**
* Represents a number expression.
*/
@StudentCreationRequired
public interface NumberExpression {
/**
* Evaluates the expression represented by this node.
*
* @return the result of the evaluation
*/
int evaluate();
}