Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Get Involved With Pugs

by Juerd (Abbot)
on May 11, 2005 at 13:33 UTC ( [id://455988]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # What I did
    my @foo;
    ...
    # What I expected
    @foo.elems == 1
    # But I got @foo.elems == 0
    
  2. or download this
    ok(@foo.elems == 1, "\@foo has 1 element");
    
  3. or download this
    is(@foo.elems, 1, "\@foo has 1 element");
    
  4. or download this
    #!/usr/bin/pugs
    
    ...
    push @foo, [];
    
    is(@foo.elems, 1, "\@foo has 1 element");
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-24 07:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found