Help for this page

Select Code to Download


  1. or download this
    @f = qw(a b c d e f g h);  $f[3] = undef;
    print join('-', @f), $/;
    __OUTPUT__
    a-b-c--e-f-g-h