> (1 << 0) == A > (1 << 1) == B > (1 << 2) == C > and so on up to > (1 << 26) == Z > Actually.. those are incorrect.. they should be what is shown below: (1 << 0) == a (1 << 1) == b (1 << 2) == c ... (1 << 26) == z (1 << 27) == A ... -- Alex
This archive was generated by hypermail 2b30 : 12/07/00 PST