in reply to Re: Escaping Wide Characters
in thread Escaping Wide Characters
and this does not compile:my($x,$y) = ('\x{263a}',undef); eval '$y = $x';
what am i doing wrong?my($x,$y) = ('\x{263a}',undef); $y = eval($x);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Escaping Wide Characters
by almut (Canon) on Mar 05, 2008 at 18:10 UTC | |
|
Re^3: Escaping Wide Characters
by ikegami (Patriarch) on Mar 05, 2008 at 18:10 UTC |