2008-05-01から1ヶ月間の記事一覧
13:09 (mst) thx? 13:09 (purl) please don't say "thx", if you're genuinely grateful it's worth the effort to type three extra characters and say "thanks". this is IRC, after all, not SMS or twitter IRCでは感謝の意を込めて略さずthanksってタ…
use Catalyst::View::Email or Catalyst::View::Email::Template DO NOT use Catalyst::Plugin::Email
use Moose Mooseでクラスを作るのは簡単です。 package Dog; use Moose; 1; これで、newというコンストラクタメソッドを持ったDogクラスのインスタンスを生成することができます。 my $dog = Dog->new; print ref $dog; ちゃんと$dogがDogのインスタンスであ…
シンプルなPerl 5でクラスを作る 普通のPerl5 OOでクラスを書くと { package Dog; use strict; use warnings; sub new { my ( $class, %args ) = @_; my $obj = bless { name => $args{name}, gender => $args{gender}, }, $class; return $obj; } sub name …