Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

FETCHing twice in Tie::FlipFlop

by CharlesClarkson (Curate)
on Dec 19, 2003 at 23:18 UTC ( [id://315946]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Tie::FlipFlop;
    tie my $flipflop => Tie::FlipFlop => ( 'white', 'black' );
    ...
    print qq|$flipflop\n|;
    print qq|$flipflop\n|;
    print qq|$flipflop\n|;
    
  2. or download this
    black
    black
    black
    black
    
  3. or download this
    use Tie::FlipFlop;
    tie my $flipflop => Tie::FlipFlop => ( 'white', 'black' );
    ...
    print $flipflop, qq|\n|;
    print $flipflop, qq|\n|;
    print $flipflop, qq|\n|;
    
  4. or download this
    white
    black
    white
    black
    

Log In?
Username:
Password:

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

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

    No recent polls found