NONZERO _ _ _ _ _ _ _ _ _ _ _ _ declaration
If an operator f is declared odd, then f(0) is replaced by zero unless f is also declared non zero by the declaration nonzero.
odd f;
f(0)
0
nonzero f;
f(0)
F(0)