Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^2: "Secret" operators

by cog (Parson)
on Jan 28, 2005 at 18:00 UTC ( [id://426059]=note: print w/replies, xml ) Need Help??


in reply to Re: "Secret" operators
in thread "Secret" operators

Ok, I tried it out and now I have some doubts...

$a <=$b=> $c is equal to ( $a <= $b , $c), that one is easy...

But what happens if I just use <=$something=>? Because printing that prints an equal sign, the contents of $something and another equal sign... I'm missing something, here...

Replies are listed 'Best First'.
Re^3: "Secret" operators
by mauke (Novice) on Jan 29, 2005 at 15:54 UTC
    That's the <> operator. =$something= isn't a simple scalar, so it's equivalent to glob("=$something="). On the other hand, <$something> means readline($something). (For special weirdness, <$ something> is the same as glob($something).)

    See glob, readline and I/O Operators in perlop for details.

Re^3: "Secret" operators
by hardburn (Abbot) on Jan 28, 2005 at 18:25 UTC

    I tried <=$vader=> (and also <==>), but they are both syntax errors. That's why I added the TIEs :)

    "There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-18 18:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found