Help for this page

Select Code to Download


  1. or download this
    printf "last:(%s)  first(%s) middle(%s)\n",
      $last || '', $first || '', $middle || '';
    
  2. or download this
    printf "some format string goes here",
      map { defined($_) ? $_ : '' } (@list_of_variables);
    
  3. or download this
    { no warnings 'uninitialized';
      print "whatever";
    }