Help for this page

Select Code to Download


  1. or download this
    my @x; # @x has a refcount of 1
    { 
      my @array=(\@x);  # @x has a refcount of 2
    } # Free lexicals
    # @x has a refcount of 1
    
  2. or download this
    procedure refcount_dec(item)
      if ( --item.refcount == 0 ) 
    ...
        endif
      endif
    endproc