[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Major elements to construct expressions are the following:
2/3
results in a rational number 2/3
.
For integer division and polynomial division, both including remainder
operation, built-in functions are provided.
x+1 A^2*B*afo X/3 |
V[0] M[1][2] |
A = 2 A *= 3 (the same as A = A*3; The others are alike.) |
A++ the expression value is the previous value of A, and A = A+1 A-- the expression value is the previous value of A, and A = A-1 ++A A = A+1, and the value is the one after increment of A --A A = A-1, and the value is the one after decrement of A |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |