mirror of
https://github.com/opus-tango/B12NumbersV3.git
synced 2026-03-20 03:55:20 +00:00
16 lines
257 B
Plaintext
16 lines
257 B
Plaintext
class B12Math {
|
|
ArrayList <B12Digit> expression;
|
|
|
|
B12Math(){
|
|
expression = new ArrayList<B12Digit>();;
|
|
}
|
|
|
|
void delete(int pos){
|
|
expression.remove(pos);
|
|
}
|
|
|
|
void evaluate(){
|
|
//TODO set expression to evaluation of expression
|
|
}
|
|
}
|