Help for this page

Select Code to Download


  1. or download this
    sub generate {
      my ($self, $OBJS) = @_;
    }
    
  2. or download this
    sub generate {
      my ($self, [@$OBJS]) = @_;
    }
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    print "shallow: @$shallow_original\n";
    print "deep: @$deep_original\n";
    
  4. or download this
    original: 1 42 3
    shallow: 1 42 3
    deep: 1 2 3