exo6: add arguments and comments the filling variable method.
[Project_POO.git] / exo6 / Expression.java
1
2 public abstract class Expression {
3
4 abstract double evaluer() throws NotDigitException;
5 }