exo6: add the basic code structure with the right class hierarchy
[Project_POO.git] / exo6 / Expression.java
... / ...
CommitLineData
1
2public abstract class Expression {
3
4 abstract boolean evaluer();
5}