Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Context: compile-time vs. run-time

by shmem (Chancellor)
on Jan 25, 2009 at 15:09 UTC ( [id://738778]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    perl -le 'my $f = 1; ($f > 0 ? @a : $a ) = ("a", "b", "c")'
    Assignment to both a list and a scalar at -e line 1, at EOF
    Execution of -e aborted due to compilation errors.
    
  2. or download this
    perl -le 'my $f = -1; ($f > 0 ? @a : @b ) = ("a", "b", "c"); print "a:
    + @a\nb: @b"'
    a: 
    ...
    perl -le 'my $f = 1; ($f > 0 ? @a : @b ) = ("a", "b", "c"); print "a: 
    +@a\nb: @b"'
    a: a b c
    b:
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://738778]
Approved by Corion
Front-paged by ikegami
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (6)
As of 2024-04-19 04:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found