view Looping.pm @ 12:dab1e83799e4 >>178 tip

R版のソースコードを追加。
author "uncorrelated zombie" <uncorrelated@yahoo.co.jp>
date Sat, 04 Feb 2012 04:10:01 +0900
parents 5e09f7cf87f5
children
line wrap: on
line source

package Looping;

sub new {
  my $class = shift;
  my $self = {
    n0 => 1
  };
  bless $self, $class;
}

sub calc {
  my $self = shift;
  my $n = shift;
  my $n1 = $self->{n0} + (1 - 2*($n%2));
  $self->{n0} = $n;
  return $n1;
}

1;