Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^3: Emoji Progress Spinners

by pme (Monsignor)
on Feb 07, 2021 at 20:42 UTC ( [id://11128033]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Emoji Progress Spinners
in thread Emoji Progress Spinners

Thank you all for your answers. Meanwhile I found answer myself to my question.
@a2 = map chr hex, @a1;
can be written as
@a2 = map chr(hex()), @a1; # or @a2 = map chr(hex($_)), @a1;
And the original syntax can be used in a simple assignment statement like this.
$x = char hex 41; # which means $x = 'A';

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11128033]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2024-04-25 07:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found