Help for this page

Select Code to Download


  1. or download this
    my $ref = [1,2,3];
    
    ...
    push @row, 4;
    
    print @$ref;        # prints: 1234
    
  2. or download this
    my $ref = [1,2,3];
    push @$ref, 4;
    print @$ref;        # prints: 1234