blob: 3a69f562a34502a1027454ea1af2166c4f449832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/usr/bin/perl
package Plain::Point;
use strict;
use warnings;
sub new {
my ( $class, %params ) = @_;
return bless {
x => $params{x} || 10,
y => $params{y},
}, $class;
}
sub x {
my ( $self, @args ) = @_;
if ( @args ) {
$self->{x} = $args[0];
}
return $self->{x};
}
sub y {
my ( $self, @args ) = @_;
if ( @args ) {
$self->{y} = $args[0];
}
return $self->{y};
}
sub clear {
my $self = shift;
@{$self}{qw/x y/} = (0, 0);
}
__PACKAGE__;
__END__
|