Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    "$fum" && 0;
    "$foo" && 0;
    print "$fum $foo\n";
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my $f_foo = defined $foo ? $foo : '';
    my $f_fum = defined $fum ? $fum : '';
    print "$f_fum $f_foo\n";