Files
unisa_strutture_dati_2013_2014/euler_tour/expressions/ExpressionTerm.java

16 lines
279 B
Java

package euler_tour.expressions;
/**
* Created with MONSTER.
* User: xgiovio
* Date: 27/04/2014
* Time: 13:06
*/
public class ExpressionTerm {
public Integer getValue() { return 0; }
public String toString() {
return new String("");
}
}