[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
epc
cannot handle variables with names that are too similar.
It rejects any variable-assignments in which the new variable-name
matches the beginning part of an existing variable-name, or
vice-versa. (Note: if it doesn't reject a name, then there will
be no problem in the calculation, so this is a limitation, rather
than a bug.)
$x = 1 +- 0.1; calculate 2 * $x; |
2+-0.2
, as expected no
matter what you mean by +-. So, this isn't a bug, is it? :-)