Help for this page

Select Code to Download


  1. or download this
    sub plain { return }
    sub Undef { return undef }
    ...
    my @empty    = plain();
    my @nonempty = Undef();
    die 'Different' unless @empty == @nonempty;