Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: $array[ 'Infinity' ]

by rgiskard (Hermit)
on Dec 17, 2007 at 16:34 UTC ( [id://657453]=note: print w/replies, xml ) Need Help??


in reply to Re: $array[ 'Infinity' ]
in thread $array[ 'Infinity' ]

If you really want a strict version:
use strict; my @a = (5 .. 10); print $a['Infinity'], "\n", $a['-Infinity'], "\n"; print $a['Infinity'], "\n", $a['-Infinity'], "\n"; print 0+"Infinity" . "\n"; print 0+"-Infinity" . "\n";
You still get:
10
5
10
5
inf
-inf
The version:
perl -v
This is perl, v5.8.8 built for cygwin-thread-multi-64int...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (9)
As of 2024-04-23 10:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found