On Mar 25, 2004, at 6:54 PM, Randy W. Sims wrote:
On 3/25/2004 5:42 PM, James Edward Gray II wrote:
Why when I run this one-liner:
perl -e 'print "\x{2660}\n"'
do I see this:
Wide character in print at -e line 1.
I'm assuming that's a warning, since I still get the expected output,
but why am I g
James Edward Gray II wrote:
> Why when I run this one-liner:
>
> perl -e 'print "\x{2660}\n"'
>
> do I see this:
>
> Wide character in print at -e line 1.
Makes sense. 2660 would overflow a one-byte character.
>
>
> I'm assuming that's a warning, since I still get the expected output,
> but why
James Edward Gray II wrote:
> Why when I run this one-liner:
>
> perl -e 'print "\x{2660}\n"'
>
> do I see this:
>
> Wide character in print at -e line 1.
>
> I'm assuming that's a warning, since I still get the expected output,
> but why am I getting it, when I didn't ask for them?
>
differ
On 3/25/2004 5:42 PM, James Edward Gray II wrote:
Why when I run this one-liner:
perl -e 'print "\x{2660}\n"'
do I see this:
Wide character in print at -e line 1.
I'm assuming that's a warning, since I still get the expected output,
but why am I getting it, when I didn't ask for them?
Is ther