Sophie

Sophie

distrib > Mageia > 7 > x86_64 > by-pkgid > b3ff9d3c9422e3118b7a64b8aa395b87 > files > 40

perl-SOAP-Lite-1.270.0-1.mga7.noarch.rpm

package My::PingPong;

sub new {
  my $self = shift;
  my $class = ref($self) || $self;
  bless {_num=>shift} => $class;
}

sub next {
  my $self = shift;
  $self->{_num}++;
}

sub value {
  my $self = shift;
  $self->{_num};
}

1;