Help for this page

Select Code to Download


  1. or download this
    class collector {
        has @.state;
    ...
            self.state.push: @nums;
        }
    }
    
  2. or download this
    {
        my @state;
    ...
    
       sub state : lvalue { @state }
    }
    
  3. or download this
    state $count is visible;