Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Roger_B's scratchpad

by Roger_B (Scribe)
on Sep 27, 2005 at 20:20 UTC ( [id://495540]=scratchpad: print w/replies, xml ) Need Help??

perl -MO=Deparse -e "for (;<>;){print}"
while (defined($_ = <ARGV>)) {
    print $_;
}
-e syntax OK

perl -MO=Deparse -e "for (;$i<100; $i++) {print $i}"
for (; $i < 100; ++$i) {
    print $i;
}
-e syntax OK

perl -MO=Deparse -e "while ($i < 100){print $i}continue {$i++}"
while ($i < 100) {
    print $i;
}
continue {
    ++$i;
}
-e syntax OK

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found