Skip to content

Instantly share code, notes, and snippets.

@shinchit
Last active August 29, 2015 14:11
Show Gist options
  • Save shinchit/f282bd242a51172f649d to your computer and use it in GitHub Desktop.
Save shinchit/f282bd242a51172f649d to your computer and use it in GitHub Desktop.
Perlでクラスのアクセサを簡単に作成する方法
use parent qw/Class::Accessor/;
__PACKAGE__->mk_accessors(qw/foo/);
# you can use
$self->foo; # gettter
$self->foo('some value'); # setter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment