Re: Numeric Literals (Summary)

[email protected] (Angel Faus) Thu, 14 Nov 2002 19:37:55 +0100
Newsgroups perl.perl6.documentation
Organization vLex.com
Message-ID <[email protected]>
> bin/oct/hex literals:
>
>     0b0110      # bin
>     0c0123      # oct
>     0x00ff      # hex
>     0x00fF      # hex, == 0x00ff
>     0x00FF      # hex, == 0x00ff
>
>     0xf_f       # ok
>     0x_ff       # ok
>

I thought that bin/oct/hex literals where deprecated in favour of 
explicit radix notation. But maybe I am wrong. I am?

-angel