view Looping.pm @ 10:308cc64c24b9 >>178

Goのソースコードを追加。
author "uncorrelated zombie" <uncorrelated@yahoo.co.jp>
date Thu, 24 Feb 2011 07:31:17 +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;