5 lines
52 B
Text
5 lines
52 B
Text
|
|
add(a,b)=a+b;
|
||
|
|
mult(a,b)=a*b;
|
||
|
|
neg(a)=-a;
|
||
|
|
inv(a)=1/a;
|