Help for this page

Select Code to Download


  1. or download this
    my (@sargs) = @_;
    
  2. or download this
    my $var = @list;
    
  3. or download this
    my ($var) = @list;
    
  4. or download this
    my $config = {"delete" => 0, soFiles => []};
    
  5. or download this
    my $config = {"delete" => 0, soFiles => };
    my $config = {"delete" => 0, "soFiles" => };
    
  6. or download this
    $config->{delete} = 1; # why -> is it a reference ?
    
  7. or download this
    $config{delete} = 1
    
  8. or download this
    #/usr/bin/perl
    use strict;
    use warnings;
    use diagnostics; # optional; turns on more descriptive warnings