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

ぎょーむ日誌 2003-05-08

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

2003 年 05 月 08 日 (木)

	use strict;
	my $counter = 0;
	for (1 .. 10) {
		$counter++;
	}
	use strict;
	my $counter = 0;
	&increase_counter;
	...
	sub increase_counter
	{
		$counter++; # これはエラーにはならず,$counter がちゃんと増加
	}                   # 私としてはエラーになってほしいところ
	use strict;
	sub increase_counter
	{
		$counter++; # エラー (コンパイルエラー)
	}
	my $counter = 0;
	&increase_counter;

KuboLog | KuboWeb