「ぎょーむ日誌」目次に戻る | KuboWeb top に戻る | twilog | atom

ぎょーむ日誌 2003-04-16

苦情・お叱りは, たいへんお手数かけて恐縮ですが, 久保 (kubo@ees.hokudai.ac.jp) までお知らせください.

2003 年 04 月 16 日 (水)

	package RedpineOpts;
	use strict;
	use Getopt::Long;

	sub new
	{
		my $class = shift;
		my $self = {};
		$self->{'parser'} = new Getopt::Long::Parser(
			config => ['pass_through']
		); # pass_through は複数の関数で引数処理するため必要
		$self->{'option'} = {};
		bless $self, $class
	}
	$self->{'parser'}->getoptions(
		'until=i' => \$option->{'end_age'},        # 整数
		'filter=s' => \$option->{'filter'},        # 文字列
		'stem_output' => \$option->{'stem_output'} # boolean
	);
	use sim_main;
	my $redpine_sim = new RedpineSim;
	$redpine_sim->Loop;

KuboLog | KuboWeb