HateLace/app/src/main/java/hatelace/Word.java

11 lines
310 B
Java
Raw Normal View History

2024-04-16 12:42:57 +02:00
package hatelace;
public abstract class Word {
2024-04-16 13:18:28 +02:00
public abstract Integer getValue();
2024-04-16 13:02:44 +02:00
public abstract Word add(Word other);
public abstract Word subtract(Word other);
public abstract Word multiply(Word other);
public abstract Word divide(Word other);
2024-04-16 13:18:28 +02:00
public abstract String toString();
2024-04-16 12:42:57 +02:00
}