Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use feature 'say';
    ...
    
    push @ary,  exists (&non) ;
    say scalar(@ary)
    
  2. or download this
    1     # *non exists after compilation of &non
    ""       # *other doesn't exist
    ()       # sub &non doesn't exist but empty list returned
    0        # @ary has consequently no elements
    
  3. or download this
     1
    ""
    ""
    1