Help for this page

Select Code to Download


  1. or download this
    my $y = 0;
    
    ...
    
    my $x = @list && $y;
    # if $x is 0, did it come from @list or $y?
    
  2. or download this
    sub sub1 {
        # ...
        my $x = <some condition> ? $y : undef;
        # ...
    }