> A question regarding to coding style: Which is considered the > "better" way to compare numbers, using "=" or "=="?
I prefer `==' since in most (recent) programming languages the `=' operator is used for assignments and `==' for comparison. But this is really just a matter of taste. Werner