in reply to Re^2: Emoji Progress Spinners
in thread Emoji Progress Spinners
can be written as@a2 = map chr hex, @a1;
And the original syntax can be used in a simple assignment statement like this.@a2 = map chr(hex()), @a1; # or @a2 = map chr(hex($_)), @a1;
$x = char hex 41; # which means $x = 'A';
|
---|