Mercurial > op > Looping
view Looping.pm @ 9:30b521e712f5 >>178
JavaScript (xhtml) のソースコードを追加。
author | "uncorrelated zombie" <uncorrelated@yahoo.co.jp> |
---|---|
date | Wed, 23 Feb 2011 01:17:31 +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;