Help for this page

Select Code to Download


  1. or download this
    $condRes = condReturn (0);
    print 'condReturn (0) '; Dump ($condRes);
    ...
    sub mebbeUndef {
        return undef if shift == 0;
    }
    
  2. or download this
    condReturn (0) $VAR1 = '';
    condReturn (1) $VAR1 = 'Foobar';
    mebbeUndef (0) $VAR1 = undef;
    mebbeUndef (1) $VAR1 = '';