Help for this page

Select Code to Download


  1. or download this
    print scalar    qw( foo bar baz ),$/;
    print scalar @{[qw( foo bar baz )]}, $/;
    ...
    
    baz
    3
    
  2. or download this
    print scalar +(undef,@INC),$/;
    
    __output__
    
    10